7
วิธีเพิ่มชื่อเรื่องลงในแผนการย่อยใน Matplotlib?
ฉันมีหนึ่งรูปที่มีหลายย่อย fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes instance ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) ฉันจะเพิ่มชื่อให้กับแผนการย่อยได้อย่างไร fig.suptitleเพิ่มชื่อเรื่องให้กับกราฟทั้งหมดและแม้ว่าจะax.set_title()มีอยู่ แต่สิ่งหลังไม่ได้เพิ่มชื่อเรื่องใด ๆ ลงในแผนย่อยของฉัน ขอขอบคุณสำหรับความช่วยเหลือของคุณ. แก้ไข: set_title()แก้ไขพิมพ์ผิดเกี่ยวกับ ขอบคุณ Rutger Kassies
225
python
matplotlib
plot
subtitle