6.2. pyplot作图 1.折线图和散点图 t = np.arange(0,4,0.1) plt.plot(t,t,'o',t,t+2,t,t**2,'o') plt.show() 2.柱线图 plt.bar(x,y) 6.3. pylab作图 同理 t = np.arange(0,4,0.1) pl.plot(t,t+2) pl.show() 6.4.pandas作图 显示股票数据,kind=bar,pie, t = ts.get_hist_data('002909') # 标题和参数名字…