matplotlib画条形图(直方图)及相关设置

这段代码展示了如何利用Matplotlib库在Python中创建一个条形图,用于显示不同变量之间的相关系数。图形包括了如运行状态、发电机转速等关键影响因素的相关性,并设置了自定义的字体、标签和图形样式。最终结果保存为SVG格式的图像文件。
摘要由CSDN通过智能技术生成

代码:

import matplotlib
import matplotlib.pyplot as plt
import numpy as np

plt.rcParams['font.sans-serif'] = ['Times New Roman']  # 正常显示中文
plt.rcParams['axes.unicode_minus'] = False  # 用来显示负号 
plt.rcParams['xtick.direction'] = 'in'  # 将x周的刻度线方向设置向内
plt.rcParams['ytick.direction'] = 'in'  # 将y轴的刻度方向设置向内`

font={'family':'STSong','size': 10.5,}  # 中文宋体,五号字体


labels = ['运行状态', '发电机转速', '机组有功', '机舱外温度', 
          '风轮转速', '变桨轴1位置', '变桨轴2位置', 
          '变桨轴3位置', '风速', '风向', '限电标志位']
corr = rho.iloc[:-1]

x = np.arange(len(labels))  # the label locations
width = 0.6  # the width of the bars

fig, ax = plt.subplots()
rects1 = ax.bar(x, np.abs(corr.round(3)), width)
#rects2 = ax.bar(x + width/2, women_means, width, label='Women')

# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel('相关系数',fontdict=font)
# ax.set_title('Scores by group and gender')
ax.set_yticks([x for x in np.arange(0,1.1,0.2)])
ax.set_xticks(x,fontsize=10.5)
ax.set_xticklabels(labels,rotation=45,fontdict=font)


def autolabel(rects):
    """Attach a text label above each bar in *rects*, displaying its height."""
    for rect in rects:
        height = rect.get_height()
        ax.annotate('{}'.format(height),
                    xy=(rect.get_x() + rect.get_width() / 2, height),
                    xytext=(0, 3),  # 3 points vertical offset
                    textcoords="offset points",
                    ha='center', va='bottom')


autolabel(rects1)
#autolabel(rects2)

fig.tight_layout()
plt.savefig('./Figures/关键影响因素.svg', bbox_inches='tight')

plt.show()

运行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值