如何禁用 Matplotlib 中的键盘快捷键?
matplotlibpythondata visualization
要禁用 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()