Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib를 사용하여 Python에서 곡선과 X축 사이 영역 채우기

<시간/>

Matplotlib를 사용하여 Python에서 곡선과 X축 사이의 영역을 채우려면 다음 단계를 수행할 수 있습니다.

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • x 만들기 및 y numpy를 사용하는 데이터 포인트.

  • x 플롯 및 y plot()을 사용하는 데이터 포인트 방법.

  • 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()

출력

다음 출력을 생성합니다 -

Matplotlib를 사용하여 Python에서 곡선과 X축 사이 영역 채우기