通过Python迭代For循环中的图形

时间:2015-05-29 17:25:16

标签: python

for k in range(10):
        rtpi = (pratio / float(math.pi)) + x*0
        plt.plot(x,rtpi,'r')

这会产生扁平线。我该怎么做:

for k in range(10):
        rtpi = (pratio / float(math.pi)) + x*0
        plt.scatter(x,rtpi,'r')

基本上,对于每个单独的点,我希望在x轴上每1个点在图表上显示一个点。

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题,this建议您使用plt.plot并添加“o”

for k in range(10):
    rtpi = (pratio / float(math.pi)) + x*0
    plt.plot(x,rtpi,'ro')