如何从 Seaborn / Matplotlib 图中删除或隐藏 X 轴标签?

matplotlibpythondata visualization

要从 Seaborn / Matplotlib 图中删除或隐藏 X 轴标签,我们可以采取以下步骤 -

  • 设置图形大小并调整子图之间和周围的填充。

  • 使用 sns.set_style() 为 Seaborn 图设置美学风格。

  • 从在线存储库加载示例数据集(需要 Internet)。

  • 要隐藏或删除 X 轴标签,请使用 set(xlabel=None)

  • 要显示图形,请使用 show()方法。

示例

from matplotlib import pyplot as plt
import seaborn as sns

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

sns.set_style("whitegrid")
tips = sns.load_dataset("tips")

ax = sns.boxplot(x="day", y="total_bill", data=tips)
ax.set(xlabel=None)

plt.show()

输出


相关文章