啊峰哥

6 python高级数据处理和可视化

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.pa...

posted on 2018-05-30 21:13  啊峰哥  阅读(257)  评论(0编辑  收藏  举报

导航