《Python数据分析实战》7 matplotlib
Posted jhc888007的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Python数据分析实战》7 matplotlib相关的知识,希望对你有一定的参考价值。
绘图
plt.axis([0,5,0,20]):坐标范围
plt.title(‘PLOT‘, fontsize=20):图片标题
plt.xlable(‘ROW‘):行标题
plt.ylable(‘COL‘):列标题
plt.text(1,2,‘TEXT‘):在指定坐标写文字
plt.grid(True):绘制网格
plt.plot(x,y):折线图
plt.plot(x,y,‘-‘):折线图
plt.plot(x,y,‘o‘):散点图
plt.hist(x,bins=20):直方图
plt.bar(x,y):条状图
plt.bar(x,y1,0.3,color=‘b‘);plt.bar(x+0.3,y2,0.3,color=‘g‘):多序列条状图
dat.plot(kind=‘bar‘):DataFrame多序列条状图
plt.bar(x,y1,color=‘b‘);plt.bar(x,y2,color=‘g‘,botton=y1):堆积图
dat.plot(kind=‘bar‘, stacked=True):DataFrame堆积图
plt.pie(x,y,[‘r‘,‘g‘,‘b‘],autopct=‘%1.1f%%‘):饼图
dat[.plot(kind=‘pie‘,figsize=(6,6)):DataFrame饼图
以上是关于《Python数据分析实战》7 matplotlib的主要内容,如果未能解决你的问题,请参考以下文章