注意
转到末尾 下载完整的示例代码。
在右侧设置默认 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()