其他分享
首页 > 其他分享> > bar()函数:在x轴上绘制定性数据的分布特征

bar()函数:在x轴上绘制定性数据的分布特征

作者:互联网

# -*- encoding: utf-8 -*-
# @File  : bar.py    
# @Author: Mr. Luo
# @Date: 2021/11/8 13:19
import matplotlib as mpl
import matplotlib.pyplot as plt
'''
在x轴上绘制定性数据的分布特征
'''
'''
x:标示在x轴上的定性数据的类别
y:每种定性数据的类别的数量
'''
# 中文字符显示
mpl.rcParams["font.sans-serif"] = ["SimHei"]
mpl.rcParams["axes.unicode_minus"] = False
x = [1, 2, 3, 4, 5, 6, 7]
y = [12, 21, 23, 15, 16, 17, 29]
plt.bar(x, y, align="center", color="c", tick_label=["x", "y", "z", "w", "q", "f", "g"], hatch="/")
plt.xlabel("编号")
plt.ylabel("数量")
plt.show()

执行效果:

 

标签:plt,bar,mpl,定性,轴上,import
来源: https://blog.csdn.net/sy20173081277/article/details/121205906