如何关闭matlibplot轴的刻度线和标记
要关闭 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()
输出
会产生以下输出