如何在使用 Matplotlib 的 Seaborn 条形图中关闭误差条形?
若要关闭 Seaborn 条形图中的误差条形,我们可以采取以下步骤:
- 从在线存储库中加载示例数据集(需要访问互联网)。
- 显示具有条形的点估计和置信区间。
- 若要显示图形,请使用 show() 方法。
示例
import seaborn as sns import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True df = sns.load_dataset('titanic') sns.barplot(x='class', y='age', hue='survived', data=df, ci=None) plt.show()
输出
广告