在 Matplotlib 中关闭左/下轴刻度标记
要关闭 matplotlib 中左或下轴刻度标记,我们可以对轴使用length=0。
步骤
设置图形大小并调整子图之间和周围的间距。
使用 numpy 创建 x 和 y 数据点。
使用plot()方法绘制 x 和 y 数据点。
使用带有length=0的tick_params()方法。
要显示图形,请使用show()方法。
示例
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-2, 2, 10) y = np.sin(x) plt.plot(x, y) plt.tick_params(axis='both', which='both', length=0) plt.show()
输出
广告