gpt4 book ai didi

Python ggplot 格式轴数作为百分比不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 03:47:07 25 4
gpt4 key购买 nike

一直喜欢 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')

enter image description here

最佳答案

现在可以在 0.5.3 版中使用(我刚刚推送了这个)。

>>> from ggplot import *
>>> import numpy as np
>>> import pandas as pd
>>> df = pd.DataFrame({ "x": np.arange(0, 10), "y": np.arange(0, 1, 0.1) })
>>> ggplot(df, aes(x='x', y='y')) +\
... geom_point() +\
... scale_y_continuous(labels='percent')

ggplot scale_x_continuous percent

关于Python ggplot 格式轴数作为百分比不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23226818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com