我正在使用plt.plot使用在线信息绘制图表。
但是,我不知道y [:,0]是什么意思:
plt.plot(t, y[:,0], label= 'active Mos')
同样,我也看到了[:,1] ......
plt.plot是绘制一条线到图表,对吗?
答案 0 :(得分:20)
这是在Numpy / Pandas中使用的符号。
[ : , 0 ]
meas(或多或少)[ first_row:last_row , column_0 ]
- 您有二维列表/矩阵/数组,您可以获得第0列中的所有值(来自所有行)。