Python 中 plt 画柱状图和折线图

Posted siyuan1998

tags:

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

1. 背景

Python在一些数据可视化的过程中需要使用 plt 函数画柱状图和折线图。

 

2. 导入

import matplotlib.pyplot as plt

 

3. 柱状图

array= np.array(array)

plt.hist(array, bins=50,facecolor="red", edgecolor="red" ,linewidth=5,alpha=0.7)

    plt.xlabel("")
    plt.ylabel("")
    plt.title("")

 

4.折线图

plt.figure(figsize=(num_group, 6))
X=[1,2,3,4,5,6,7,8,9]
Y=[1,2,3,4,5,6,7,8,9]#定义折线图的X,Y坐标

plt.plot(X, Y, label=str(model_name)) #折线图

for a, b in zip(X, Y):
    plt.text(a, b, ‘%.2f‘ % b, ha=‘center‘, va=‘bottom‘, fontsize=7)#每个点的数值
plt.legend(loc=2)#显示每根折线的label
plt.title("".format(eval_key))#显示图名

 

5.保存

print("=> saving ".format(image_name))
plt.savefig(image_name)

  

 

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

怎样把柱状图和折线图合并一起

orign怎么做双轴图一个柱状图一个线图

如何绘制双轴柱状图和折线图?

怎么在excel图表上既显示柱状图又显示折线图

c# winform 折线图柱状图 饼图 控件都有哪些?

如何使用SAP UI5 web Component的React框架的柱状图和折线图