如何使用python中的Plotnine库将y轴更改为百分比,而不是分数?
小节的MWE如下:
from plotnine import *
from plotnine.data import mpg
p = ggplot(mpg) + geom_bar(aes(x='manufacturer', fill='class'), position='fill')
print(p)
哪个给出下图:
Stacked bar chart with y axis as fraction not percent
使用R中的ggplot2很简单,只需添加:
+ scale_y_continuous(labels = scales::percent)
但是我还无法在Plotnine中找到如何做到这一点。
有什么建议吗?
答案 0 :(得分:3)
labels
参数接受一个以断点列表为输入的可调用对象。您要做的就是手动转换列表中的每个项目:
scale_y_continuous(labels=lambda l: ["%d%%" % (v * 100) for v in l])
答案 1 :(得分:3)
此处提出了类似的问题:https://github.com/has2k1/plotnine/issues/152
from plotnine import *
from plotnine.data import mpg
from mizani.formatters import percent_format
p = ggplot(mpg) + geom_bar(aes(x='manufacturer', fill='class'), position='fill')
p = p + scale_y_continuous(labels=percent_format())
print(p)
其他预定义的过滤器可以在这里找到:https://mizani.readthedocs.io/en/stable/formatters.html