需要帮助,使用pyplot在同一图中绘制多个折线图,以获取空白格式的数据

时间:2018-10-21 14:02:54

标签: python loops matplotlib indexing iteration

28 121 106 112 134  
42 123 114 115 135  
56 130 118 124 138 
42 123 114 115 135
63 132 126 131 141(and 14 more rows....)

基本上每行有5个点,需要沿着等距x通过线图绘制(例如) 即使我密谋说5行也足够体面。目前,这是我解决此问题的方法,但它显示了一个空白图

for i in range(20):
print()
for j in range(5):
    print(int(mat[0].split()[j]),end='     ')
    plt.plot(j,int(mat[i].split()[j]),'r')
plt.show()

i已检查,并且mat [i] .split()[j]返回正确的编号。对于要提取的每一行,但未绘制出来。由于数据非常简单,我现在不想处理数据框。

0 个答案:

没有答案