码迷,mamicode.com
首页 > 其他好文 > 详细

pandas绘图

时间:2018-05-26 21:51:56      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:src   otl   import   col   dataframe   plt   .data   port   sub   

#encoding:utf8
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
df = pd.DataFrame(np.random.randn(10,4),index=pd.date_range(2018/12/18,
   periods=10), columns=list(ABCD))
plt.figure()
df.plot()
df = pd.DataFrame(3 * np.random.rand(4), index=[a, b, c, d], columns=[x])
df.plot.pie(subplots=True)
plt.show()
#或者
#encoding:utf8
import pandas as pd
import numpy as np
from pylab import *
df = pd.DataFrame(np.random.randn(10,4),index=pd.date_range(2018/12/18,
   periods=10), columns=list(ABCD))
df.plot()
df = pd.DataFrame(3 * np.random.rand(4), index=[a, b, c, d], columns=[x])
df.plot.pie(subplots=True)
show()

 

技术分享图片

技术分享图片

 

pandas绘图

标签:src   otl   import   col   dataframe   plt   .data   port   sub   

原文地址:https://www.cnblogs.com/ggzhangxiaochao/p/9094387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!