散布図の作り方

%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と同じ指定が可能)

コメント

タイトルとURLをコピーしました