%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('seaborn-darkgrid')
fig, ax = plt.subplots()
ax.scatter([0, 1, 2], [2, 1, 3], s=64, c='b', marker='o')
ax.scatter([0, 1, 2], [3, 2, 1], s=64, c='r', marker='s');
scatter(x, y, …)
を使います。x, y
は、ポイントのX座標のリストとY座標のリストです。
s 大きさ 64
c 色 'b'
:青、'r'
:赤
marker 形 'o'
:丸、's'
:四角(plt.plot
と同じ指定が可能)
コメント