matplotlib에서 y축 한계 설정 matplotlib의 y축 한계를 설정하는 데 도움이 필요합니다.이것이 제가 시도했지만 실패한 코드입니다. 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 ..