关闭Matplotlib中左/底部轴标记
要关闭Matplotlib中左/底部轴标记,我们可以使用 length=0 来设定轴。
步骤
- 设置图形大小并调整子图之间和周围的间距。
-
使用NumPy创建x和y数据点。
-
使用 plot() 方法绘制x和y数据点。
-
使用 tick_params() 方法和 length=0 设定轴。
-
使用 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()