如何在Matplotlib中禁用键盘快捷键?
为了禁用Matplotlib中的键盘快捷键,我们可以使用 remove(‘s’) 方法。
步骤
- 设置图像大小并调整子图之间和周围的间距。
- 要禁用“s”键保存图像的快捷方式,使用 remove(“s”) 方法。
- 初始化一个变量 n 表示数据点数。
- 使用NumPy创建 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 使用 show() 方法显示图像。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
plt.rcParams['keymap.save'].remove('s')
n = 10
x = np.random.rand(n)
y = np.random.rand(n)
plt.plot(x,y)
plt.show()