Matplotlib에서 축의 단위 길이를 설정하려면 xlim을 사용할 수 있습니다. 또는 일림 축의 배율, 즉 단위 길이 시간으로.
단계
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
x 만들기 및 y numpy를 사용하는 데이터 포인트.
-
x 플롯 및 y plot() 를 사용하는 데이터 포인트 방법.
-
x 획득 및 y 축, 범위를 제한합니다.
-
xlim 사용 그리고 일림 단위 길이 눈금을 설정하는 방법입니다.
-
그림을 표시하려면 show()를 사용하세요. 방법.
예
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(1, 10, 100) y = np.log(x) plt.plot(x, y) axis_scale = 2 xmin, xmax = plt.xlim() ymin, ymax = plt.ylim() plt.xlim(xmin * axis_scale, xmax * axis_scale) plt.ylim(ymin * axis_scale, ymax * axis_scale) plt.show()
출력