我有一个现在的情节是用这样的大pandas创建的:
df['myvar'].plot(kind='bar')
y轴的格式为float,我想将y轴更改为百分比.我发现所有的解决方案都使用ax.xyz语法,我只能将代码放在上面创建图形的行(我不能添加ax = ax到上面的行).
如何将y轴格式化为百分比而不更改上述线?
这是我找到的解决方案,但要求我重新定义情节:
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.ticker as mtick
data = [8,12,15,17,18,18.5]
perc = np.linspace(0,100,len(data))
fig = plt.figure(1, (7,4))
ax = fig.add_subplot(1,1,1)
ax.plot(perc, data)
fmt = '%.0f%%' # Format you want the ticks, e.g. '40%'
xticks = mtick.FormatStrFormatter(fmt)
ax.xaxis.set_major_formatter(xticks)
plt.show()