如何在 Seaborn 中使用 Matplotlib 在同一张图上绘制多个直方图?
要使用 Seaborn 在同一张图上绘制多个直方图,我们可以执行以下步骤:
创建两个列表(x 和 y)。
创建一个图形并添加一套两个子图。
迭代包含 x 和 y 的列表。
使用列表(步骤 3)中的数据和 histplot() 方法绘制直方图。
将 X 轴范围限制在 0 到 10 之间。
要显示图形,使用 show() 方法。
示例
import seaborn as sns from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = [1, 5, 1, 4, 2] y = [7, 5, 6, 4, 5] fig, ax = plt.subplots() for a in [x, y]: sns.histplot(a, bins=4, ax=ax, kde=False) ax.set_xlim([0, 10]) plt.show()
输出
广告