ฉันต้องการความช่วยเหลือในการตั้งค่าขีด จำกัด ของแกน y บน 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, mfc = '#EB1717')
plt.xticks(paramValues)
plt.ylabel('Average Price')
plt.xlabel('Mark-up')
plt.grid(True)
plt.ylim((25,250))
ด้วยข้อมูลที่ฉันมีสำหรับพล็อตนี้ฉันได้รับขีด จำกัด แกน y ที่ 20 และ 200 อย่างไรก็ตามฉันต้องการขีด จำกัด 20 และ 250
plt.ylim((25,250))
plt.ylim(ymax = 250, ymin = 25)
ฉันใช้Agg
แบ็กเอนด์
axisbg
เลิกใช้แล้ว
plt.show()
ในตอนท้ายเพื่อแสดงพล็อต คุณใช้เวอร์ชันไหนและแบ็คเอนด์ใด