9
встановлення межі осі у в matplotlib
Мені потрібна допомога з встановленням меж осі у на matplotlib. Ось код, який я спробував, безуспішно. 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, …
416
python
matplotlib