使用 Matplotlib 填充 Python 中曲线和 X 轴之间的区域
为了使用 Matplotlib 填充 Python 中曲线和 X 轴之间的区域,我们可采取以下几步
步骤
设置图形尺寸并调整子图之间以及周围的边距。
使用 numpy 创建x 和y 数据点。
使用plot() 方法绘制x 和y 数据点。
使用fill_between() 方法填充曲线和 X 轴之间的区域。
使用show() 方法显示图形。
示例
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()
输出
将产生以下输出 −
广告