ในการพล็อตฟังก์ชันหลายตัวแปรใน Python เราสามารถทำตามขั้นตอนต่อไปนี้ -
ขั้นตอน
-
กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
-
สร้างสุ่ม x , ย และ z จุดข้อมูลโดยใช้ numpy
-
สร้างร่างและชุดแผนย่อย
-
สร้างพล็อตกระจายด้วย x , ย และ z จุดข้อมูล
-
สร้างแถบสีสำหรับอินสแตนซ์ ScalarMappable s .
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True def func(x, y): return 3 * x + 4 * y - 2 + np.random.randn(30) x, y = np.random.randn(2, 30) y *= 100 z = func(x, y) fig, ax = plt.subplots() s = ax.scatter(x, y, c=z, s=100, marker='*', cmap='plasma') fig.colorbar(s) plt.show()
ผลลัพธ์
มันจะสร้างผลลัพธ์ต่อไปนี้ -