9
establecer el límite del eje y en matplotlib
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', …
416
python
matplotlib