第七课 数据可视化
第七节 直方图的绘制
# 引入包
import matplotlib.pyplot as plt
# 准备数据
population_ages = [22, 55, 62, 45, 21, 22, 34, 42, 42, 4, 89, 82, 80, 80, 75, 65, 54, 44, 43, 42, 48]
# 指定分组个数
bins = 5
plt.hist(population_ages, bins)
plt.show()
# 指定分组边界
bins = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90]
plt.hist(population_ages, bins, histtype='bar', rwidth=0.8)
plt.show()
matplotlib-直方图
最新推荐文章于 2023-06-22 17:12:22 发布