如何去掉 matplotlib 坐标轴的刻度和标记?
若要关闭 matplotlib 坐标轴 的刻度和标记,我们可以采取以下步骤 -
- 设置图形大小并调整子图之间和周围的空白。
- 使用 numpy 创建 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 获取当前作图的坐标轴。
- 使用 set_tick_params() 隐藏 X 和 Y 坐标轴标签标记。
- 使用 set_xticks() 和 set_yticks() 隐藏 X 和 Y 坐标轴刻度标记。
- 若要显示图形,使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Create x and y data points x = np.linspace(-10, 10, 100) y = np.sin(x) plt.plot(x, y) ax = plt.gca() # Hide X and Y axes label marks ax.xaxis.set_tick_params(labelbottom=False) ax.yaxis.set_tick_params(labelleft=False) # Hide X and Y axes tick marks ax.set_xticks([]) ax.set_yticks([]) plt.show()
输出
它将产生以下输出
广告