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

时间:2018-09-26 07:59:56

标签: python matplotlib seaborn

在图中,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)

1 个答案:

答案 0 :(得分:1)

您可以在网格的轴上使用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()

enter image description here