오른쪽에 기본 y축 눈금 레이블 설정 #

rcParams["ytick.labelright"](기본값: False), rcParams["ytick.right"](기본값: False), rcParams["ytick.labelleft"](기본값: True) 및 rcParams["ytick.left"](기본값: )을 사용 True하여 축에서 눈금과 해당 레이블이 나타나는 위치를 제어할 수 있습니다. 이러한 속성은 에서도 설정할 수 있습니다 .matplotlib/matplotlibrc.

눈금 라벨 오른쪽
import matplotlib.pyplot as plt
import numpy as np

plt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True
plt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False

x = np.arange(10)

fig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6))

ax0.plot(x)
ax0.yaxis.tick_left()

# use default parameter in rcParams, not calling tick_right()
ax1.plot(x)

plt.show()

Sphinx-Gallery에서 생성한 갤러리