x与y的累计式直方图怎么绘制
时间: 2023-03-27 16:02:39 浏览: 87
绘制直方图
4星 · 用户满意度95%
你可以使用Matplotlib库中的hist函数来绘制x与y的累计式直方图。具体步骤如下:
1. 导入Matplotlib库
import matplotlib.pyplot as plt
2. 定义x和y的数据
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
3. 绘制累计式直方图
plt.hist(x, bins=10, cumulative=True, label='x')
plt.hist(y, bins=10, cumulative=True, label='y')
plt.legend()
plt.show()
其中,bins参数表示直方图的柱子数量,cumulative参数表示是否绘制累计式直方图,label参数表示每个直方图的标签,legend函数用于显示标签。
阅读全文