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

Matplotlib에서 set_xlim과 set_xbound의 차이점은 무엇입니까?

<시간/>

set_xlim − X축 보기 제한을 설정합니다.

set_xbound − X축의 하한 및 상한 수치 경계를 설정합니다.

xlim 및 xbound를 설정하기 위해 다음 단계를 수행할 수 있습니다. -

  • 서브플롯(2) 사용 , 우리는 그림과 서브플롯 세트를 생성할 수 있습니다. 여기에서 2개의 서브플롯을 생성합니다.

  • numpy를 사용하여 x 및 y 데이터 포인트를 만듭니다.

  • 축 1을 사용하여 plot() 을 사용하여 x 및 y 데이터 포인트를 그립니다. 방법.

  • set_xlim()을 사용하여 x 제한 설정 방법.

  • 축 2를 사용하여 plot() 메서드를 사용하여 x 및 y 데이터 포인트를 그립니다.

  • 섹스 xbound set_xbound() 사용 방법.

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

예시

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, axes = plt.subplots(2)

x = np.linspace(-5, 5, 100)
y = np.sin(x)

axes[0].plot(x, y, c='g')
axes[0].set_xlim(-3, 3)

axes[1].plot(x, y, c='r')
axes[1].set_xbound(-3, 3)

plt.show()

출력

Matplotlib에서 set_xlim과 set_xbound의 차이점은 무엇입니까?