一直喜欢 Python 中的新 ggplot 模块,但我无法将我的 y 标签格式化为百分比而不是小数。以下代码生成以下图像。请注意,labels = 'percent' 代码不会产生预期的格式。
plot = ggplot(aes(x='Date', y='return', color='Stocks'),data=rx) +\
geom_line() +\
scale_x_date(breaks=date_breaks('1 day'), labels='%b %d %Y') +\
scale_y_continuous(labels= 'percent') +\
ylab('Cumulative Return') + ggtitle('S&P Sector Performance')