matplotlib에서 축 승수 값을 설정하려면 다음 단계를 수행할 수 있습니다. -
단계
-
Figure 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다. .
-
numpy를 사용하여 x 데이터 포인트를 만듭니다.
-
플롯 x 및 x 2 plot() 사용 방법.
-
Figure의 현재 축을 가져옵니다.
-
변수 승수 초기화 , 즉, 축 승수의 값입니다.
-
보기 간격 내에서 밑의 각 정수 배수에 눈금을 설정하십시오.
-
주요 시세 표시기의 로케이터를 설정합니다.
-
그림을 표시하려면 show()를 사용하세요. 방법.
예시
# Import matplotlib and numpy from matplotlib import pyplot as plt import numpy as np # Set the figure size plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True # Create x data points x = np.linspace(1, 100, 100) # Plot x and x2 plt.plot(x, x**2) # Get the current axis ax = plt.gca() # Axis multiplier multiplier = 6 # Set a tick on each integer multiple locator = plt.MultipleLocator(multiplier) # Set the locator of the major ticker ax.xaxis.set_major_locator(locator) plt.show()
출력
다음 출력을 생성합니다 -