Ich habe ein vorhandenes Grundstück, das mit Pandas wie diesem erstellt wurde:
df['myvar'].plot(kind='bar')
Die y-Achse ist als float formatiert und ich möchte die y-Achse in Prozent ändern. Alle Lösungen, die ich gefunden habe, verwenden die ax.xyz-Syntax und ich kann nur Code unterhalb der Zeile darüber platzieren, die das Diagramm erstellt (ich kann ax = ax nicht zur obigen Zeile hinzufügen.)
Wie kann ich die y-Achse als Prozentsatz formatieren, ohne die obige Zeile zu ändern?
Hier ist die Lösung, die ich gefunden habe , die ich jedoch neu definieren muss :
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()
Link zur obigen Lösung: Pyplot: Verwenden des Prozentsatzes auf der x-Achse