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

ฉันจะแสดง np.array ด้วย pylab.imshow() โดยใช้ Matplotlib ได้อย่างไร


ในการแสดง np.array ด้วย imshow() เราสามารถทำตามขั้นตอนต่อไปนี้

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างแรสเตอร์ข้อมูล 2 มิติโดยใช้ np.array .
  • แสดงข้อมูลเป็นรูปภาพ เช่น บนแรสเตอร์ปกติ 2 มิติ
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = np.array(
[[0.1, 0.7, 0.6, 0.3],
[0.2, 0.6, 0.5, 0.2],
[0.8, 0.3, 0.80, 0.01],
[0.3, 0.4, 0.2, 0.1]]
)
plt.imshow(data, interpolation="nearest", cmap="RdYlGn_r")
plt.show()

ผลลัพธ์

ฉันจะแสดง np.array ด้วย pylab.imshow() โดยใช้ Matplotlib ได้อย่างไร