柱状图

Posted jad-xxd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了柱状图相关的知识,希望对你有一定的参考价值。

问题1:
for m, n in zip(x1, y1):
plt.text(m + 0.08, n + 20, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘)

for m, n in zip(x2, y2):
plt.text(m - 0.08, n + 10, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘)
问题2:
如果是三个图怎么办

0.5:柱状图的宽度
align:对齐方式
x1=[1,2,3]
x2=[1,2,3]
y1=[600,700,800]
y2=[500,900,1000]

plt.figure()
plt.bar(x1,y1,0.1,color=y,align=edge,label=进口 单位/美元)
plt.bar(x2,y2,-0.1,color=r,align=edge,label=出口 单位/美元)

for m, n in zip(x1, y1):
    plt.text(m + 0.08, n + 20, %.2f % n, ha=center, va=bottom)

for m, n in zip(x2, y2):
    plt.text(m - 0.08, n + 10, %.2f % n, ha=center, va=bottom)

plt.xlabel(第一季度/月)
plt.ylabel(进出口额/美元)
plt.title(第一季度进出口数据)
plt.xticks(range(1,4),[str(i)+ for i in range(1,4)])
plt.legend()
plt.show()

技术分享图片

 

 

 

adding

1.按到Insert会出现想命令行一样的输入形式

2.打开ipynb文件,将文件移到jupyter下就可以打开了











以上是关于柱状图的主要内容,如果未能解决你的问题,请参考以下文章

echarts 多系列柱状图

pyecharts柱状图进阶篇

百度柱状图echarts插件怎么赋值

柱状图点击切换数据

100天精通Python(可视化篇)——第80天:matplotlib绘制不同种类炫酷柱状图代码实战(簇状堆积横向百分比3D柱状图)

python画柱状图 python画直方图