ในการสร้าง matplotlib.pyplot.contourf วงกลม เราสามารถทำตามขั้นตอนต่อไปนี้ -
-
กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
-
สร้าง x, y, a, b และ ค จุดข้อมูลโดยใช้ Numpy
-
สร้างร่างและชุดแผนย่อย
-
สร้างพล็อต Contour โดยใช้ contourf() วิธีการ
-
กำหนดอัตราส่วนภาพ
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-0.5, 0.5, 100) y = np.linspace(-0.5, 0.5, 100) a, b = np.meshgrid(x, y) c = a ** 2 + b ** 2 - 0.2 figure, axes = plt.subplots() axes.contourf(a, b, c) axes.set_aspect(1) plt.show()
ผลลัพธ์