使用 Seaborn 向 Matplotlib 图添加次要网格线

matplotlibserver side programmingprogramming

要使用 Seaborn 向 matplotlib 图添加次要网格线,我们可以采取以下步骤 −

  • 使用 Seaborn 创建一个数字列表以绘制直方图。

  • 使用 histplot()  方法绘制单变量或双变量直方图以显示数据集的分布。

  • 要制作次要网格线,我们可以先使用主网格线,然后使用次要网格线。

  • 要显示图形,请使用 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 = [5, 6, 7, 2, 3, 4, 1, 8, 2]
ax = sns.histplot(x, kde=True, color='red')
ax.grid(b=True, which='major', color='black', linewidth=0.075)
ax.grid(b=True, which='minor', color='black', linewidth=0.075)
plt.show()

输出


相关文章