在图中,y轴标签是从(0到1)的小数,即(0.1、0.2、0.4等)。如何将其转换为%格式(10%,20%,40%等)。仅10、20、40也可以。

谢谢,约翰

g = sns.catplot(x="who", y="survived", col="class",
...                 data=titanic, saturation=.5,
...                 kind="bar", ci=None, aspect=.6)

最佳答案

您可以在网格的轴上使用PercentFormatter

import seaborn as sns
import matplotlib.pyplot as plt
from  matplotlib.ticker import PercentFormatter
titanic = sns.load_dataset("titanic")

g = sns.catplot(x="who", y="survived", col="class",
                 data=titanic, saturation=.5,
                 kind="bar", ci=None, aspect=.6)

for ax in g.axes.flat:
    ax.yaxis.set_major_formatter(PercentFormatter(1))
plt.show()


python - Python Seaborn Catplot-如何将y轴比例更改为百分比-LMLPHP

10-08 15:19