You are reading an old version of the documentation (v2.1.1). For the latest version see https://matplotlib.org/stable/gallery/lines_bars_and_markers/scatter_custom_symbol.html
matplotlib
Fork me on GitHub


Travis-CI:

Related Topics

This Page

Scatter Custom SymbolΒΆ

../../_images/sphx_glr_scatter_custom_symbol_001.png
import matplotlib.pyplot as plt
import numpy as np

# unit area ellipse
rx, ry = 3., 1.
area = rx * ry * np.pi
theta = np.arange(0, 2 * np.pi + 0.01, 0.1)
verts = list(zip(rx / area * np.cos(theta), ry / area * np.sin(theta)))

x, y, s, c = np.random.rand(4, 30)
s *= 10**2.

fig, ax = plt.subplots()
ax.scatter(x, y, s, c, marker=None, verts=verts)

plt.show()

Total running time of the script: ( 0 minutes 0.017 seconds)

Gallery generated by Sphinx-Gallery