Necesito ayuda para establecer los límites del eje y en matplotlib. Aquí está el código que probé, sin éxito.
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))
Con los datos que tengo para este gráfico, obtengo límites del eje y de 20 y 200. Sin embargo, quiero los límites 20 y 250.
plt.ylim((25,250))
y plt.ylim(ymax = 250, ymin = 25)
. Estoy usando el Agg
backend.
axisbg
ahora está en desuso
plt.show()
al final para mostrar la trama. ¿Qué versión y qué backend estás usando?