Pandas绘图
2017-05-31 本文已影响0人
Epiphanyyaoyao
Series绘制序列图
dta=pd.Series(map(lambda x: x.value ,data[1]), index=map(lambda x: x.value, data[0]))
dta.plot()
plt.pyplot.show()
Series绘制序列图
dta=pd.Series(map(lambda x: x.value ,data[1]), index=map(lambda x: x.value, data[0]))
dta.plot()
plt.pyplot.show()