ในการเติมขอบเขตระหว่างเส้นโค้งและแกน X ใน Python โดยใช้ Matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้
ขั้นตอน
-
กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
-
สร้าง x และ ย จุดข้อมูลโดยใช้ numpy
-
พล็อต x และ ย จุดข้อมูลโดยใช้ plot() วิธีการ
-
เติมพื้นที่ระหว่างเส้นโค้งและแกน X โดยใช้ fill_between() วิธีการ
-
หากต้องการแสดงรูป ให้ใช้ แสดง() วิธีการ
ตัวอย่าง
import matplotlib.pyplot as plt import numpy as np # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Create x and y data points x = np.linspace(-5, 5, 100) y = np.sin(x) # Plot the x and y data points plt.plot(x, y) # Fill the region with color plt.fill_between(x, 0, y, color='orange') # Display the plot plt.show()
ผลลัพธ์
มันจะสร้างผลลัพธ์ต่อไปนี้ -