Ich brauche Hilfe beim Festlegen der Grenzen der y-Achse auf matplotlib. Hier ist der Code, den ich erfolglos ausprobiert habe.
import matplotlib.pyplot as plt
plt.figure(1, figsize = (8.5,11))
plt.suptitle('plot title')
ax = []
aPlot = plt.subplot(321, axisbg = 'w', title = "Year 1")
ax.append(aPlot)
plt.plot(paramValues,plotDataPrice[0], color = '#340B8C',
marker = 'o', ms = 5, mfc = '#EB1717')
plt.xticks(paramValues)
plt.ylabel('Average Price')
plt.xlabel('Mark-up')
plt.grid(True)
plt.ylim((25,250))
Mit den Daten, die ich für dieses Diagramm habe, erhalte ich Grenzwerte für die y-Achse von 20 und 200. Ich möchte jedoch die Grenzwerte für 20 und 250.
plt.ylim((25,250))
und plt.ylim(ymax = 250, ymin = 25)
. Ich benutze das Agg
Backend.
axisbg
ist jetzt veraltet
plt.show()
am Ende hinzufüge , um den Plot anzuzeigen. Welche Version und welches Backend verwenden Sie?