matplotlib原点中的散点图对齐

时间:2014-01-18 23:45:49

标签: python matplotlib plot

我在网上看到了这个非常简单的东西而找不到它。

我有一个(x,y)点的列表,想要绘制它们,原点在左下方,网格标记在每个轴上显示0,1,2,3,4 ...和橙色点。我该怎么做?

1 个答案:

答案 0 :(得分:1)

相当基本的,你应该在matplotlib文档中看一下,examplesgallery部分显示了很多不同的东西以及生成它的代码。

import matplotlib.pyplot as plt
import numpy as np

#Random sample data
x = np.random.random_integers(0, 5, 10)
y = np.random.random_integers(0, 5, 10)

plt.scatter(x,y, c='orange')
plt.ylim([0, y.max()])
plt.xlim([0, x.max()])
plt.grid()
plt.show()