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

Matplotlib에서 사소한 틱의 위치를 ​​어떻게 설정할 수 있습니까?

<시간/>

Matplotlib에서 작은 눈금의 위치를 ​​설정하려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • x 만들기 및 y numpy를 사용한 데이터 포인트
  • 그림과 서브플롯 세트를 생성합니다.
  • 플롯 xy plot()을 사용하는 데이터 포인트 방법.
  • 작은 눈금을 찾으려면 set_minor_locator()를 사용하세요. 방법.
  • 작은 눈금을 표시하려면 grid(which='minor')를 사용합니다. .
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import AutoMinorLocator

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

x = np.linspace(1, 10, 100)
y = np.log(x)

fig, ax = plt.subplots()
ax.plot(x, y)
minor_locator = AutoMinorLocator(2)
ax.xaxis.set_minor_locator(minor_locator)
plt.grid(which='minor')

plt.show()

출력

Matplotlib에서 사소한 틱의 위치를 ​​어떻게 설정할 수 있습니까?