我正在使用适用于Python的ggplot软件包,并且正在尝试对绘图上的y轴进行格式化,以显示百分比而不是小数。我找到了与解决方案相同的帖子,但是该解决方案不适用于我: Python ggplot format axis number as percent not functioning
这是我的代码
plot = ggplot(metricsTable, aes('date_id','content_perc')) \
+ geom_line()\
+ scale_y_continuous(labels='percent')\
+ labs(x=" ", y="Content %")
print(plot)
数据为like this
生成的图是as shown
我正在使用的ggplot软件包的版本是0.11.5
我不确定我缺少什么。任何帮助表示赞赏。