ノート
完全なサンプルコードをダウンロードするには、ここをクリックしてください
カスタム記号を使用した散布図#
TeX シンボルの使用#
スキャッタ シンボルをカスタマイズする簡単な方法は、$ 記号で囲まれた TeX シンボル名をマーカーとして渡すことです。以下では、 を使用しますmarker=r'$\clubsuit$'
。
import matplotlib.pyplot as plt
import numpy as np
# Fixing random state for reproducibility
np.random.seed(19680801)
x = np.arange(0.0, 50.0, 2.0)
y = x ** 1.3 + np.random.rand(*x.shape) * 30.0
sizes = np.random.rand(*x.shape) * 800 + 500
fig, ax = plt.subplots()
ax.scatter(x, y, sizes, c="green", alpha=0.5, marker=r'$\clubsuit$',
label="Luck")
ax.set_xlabel("Leprechauns")
ax.set_ylabel("Gold")
ax.legend()
plt.show()
カスタムパスの使用#
または、N 頂点のカスタム パスを x、y 値の Nx2 配列としてmarkerとして渡すこともできます。
# unit area ellipse
rx, ry = 3., 1.
area = rx * ry * np.pi
theta = np.arange(0, 2 * np.pi + 0.01, 0.1)
verts = np.column_stack([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=verts)
plt.show()