python 图表

python 图表,第1张

概述#图表 import matplotlib.pyplot as plt fig,ax=plt.subplots(2,2) ax[0,1].plot(x,y,‘r--*‘,label=‘sin‘) ax[0,1].legend(loc=‘upper right‘) ax[0,1].grid() fig.savefig(‘fig.png‘)   import pandas as pd df=pd.re

#图表

import matplotlib.pyplot as plt

fig,ax=plt.subplots(2,2)
ax[0,1].plot(x,y,‘r--*‘,label=‘sin‘)
ax[0,1].legend(loc=‘upper right‘)
ax[0,1].grID()
fig.savefig(‘fig.png‘)

 

import pandas as pd

df=pd.read_csv(‘./data/data2.csv‘,index_col=‘产品编码‘,enCoding=‘gbk‘)
df.head()

y=df[‘供应商进货价‘].values

x=df.index.values

#创建折线图
from pylab import mpl
mpl.rcParams[‘Font.sans-serif‘]=[‘simhei‘]
fig,ax=plt.subplots()
ax.plot(x,‘r‘)
ax.set(Title=‘年度price趋势图‘,xlabel=‘年度‘,ylabel=‘价格‘)
# plt.Title(‘年度price趋势图‘)
plt.show()

#创建柱线图
from pylab import mpl
mpl.rcParams[‘Font.sans-serif‘]=[‘simhei‘]
fig,ax=plt.subplots()
ax.bar(x,0.5,color=‘green‘)
ax.set(Title=‘年度price趋势图‘,ylabel=‘价格‘)
# plt.Title(‘年度price趋势图‘)
plt.show()

#水平柱形图

from pylab import mplmpl.rcParams[‘Font.sans-serif‘]=[‘simhei‘]fig,ax=plt.subplots()ax.barh(x,color=‘green‘)ax.set(Title=‘年度price趋势图‘,ylabel=‘价格‘)# plt.Title(‘年度price趋势图‘)plt.show()

总结

以上是内存溢出为你收集整理的python 图表全部内容,希望文章能够帮你解决python 图表所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1191286.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存