📜  如何在两组的matplotlib中散点图 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:17.345000             🧑  作者: Mango

代码示例2
import matplotlib.pyplot as plt

x = range(100)
y = range(100,200)
fig = plt.figure()
ax1 = fig.add_subplot(111)

ax1.scatter(x[:4], y[:4], s=10, c='b', marker="s", label='first')
ax1.scatter(x[40:],y[40:], s=10, c='r', marker="o", label='second')
plt.legend(loc='upper left');
plt.show()