我有一个用熊猫创建的现有情节,如下所示:
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()