我们如何使用 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)
这给出了下图:
在 R 中使用 ggplot2 很简单,只需要添加:
+ scale_y_continuous(labels = scales::percent)
但是,我无法在 Plotnine 中找到如何做到这一点。
有什么建议吗?