Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

ใส่คำอธิบายประกอบแผนย่อยในรูปด้วย A, B, C โดยใช้ Matplotlib


ในการใส่คำอธิบายประกอบแผนย่อยในรูปที่มี A, B และ C โดยใช้ matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างร่างและชุดแผนย่อยด้วย nrows=1 และ ncols=3 .
  • สร้างตัววนซ้ำ 1D บนอาร์เรย์
  • วนซ้ำแต่ละแกนและแสดงข้อมูลเป็นรูปภาพ
  • วางข้อความ A, B และ C ในลูปเอง
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
from matplotlib import pyplot as plt
import string
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, axs = plt.subplots(1, 3)
axs = axs.flat
for index, ax in enumerate(axs):
ax.imshow(np.random.randn(4, 4), interpolation='nearest',
cmap="copper")
ax.text(0.45, 1.1, string.ascii_uppercase[index],
transform=ax.transAxes,
size=20, weight='bold')
plt.show()

ผลลัพธ์

ใส่คำอธิบายประกอบแผนย่อยในรูปด้วย A, B, C โดยใช้ Matplotlib