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

matplotlib 2.0에서 해치(배경색 없음)만 있는 영역을 어떻게 채우나요?

<시간/>

matplotlib에서 해치(배경색 없음)만 있는 영역을 채우려면 다음 단계를 수행할 수 있습니다. -

단계

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

  • 변수 n 초기화 샘플 데이터의 수를 저장합니다.

  • Figure와 서브플롯 세트를 생성합니다.

  • x 플롯 및 y 데이터 포인트.

  • x 사이의 영역 채우기 및 y 원형 해치 포함, edgecolor="blue" .

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
import matplotlib.pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# Number of sample data
n = 256

# x and y data points
x = np.linspace(-np.pi, np.pi, n, endpoint=True)
y = np.sin(2 * x)

# Figure and set of subplots
fig, ax = plt.subplots()

# Plot the data points
ax.plot(x, y, color='blue', alpha=1.0)

# Fill the area between the data points
ax.fill_between(x, y, color='blue', alpha=.2, facecolor="none", hatch="o", edgecolor="blue", linewidth=1.0)

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

matplotlib 2.0에서 해치(배경색 없음)만 있는 영역을 어떻게 채우나요?