如何在 Matplotlib 中移除轴刻度中带小数点的数字?
若要移除 Matplotlib 中轴刻度中的小数点后数字,我们可执行以下步骤 −
设定图像大小并调整子图间和周围的内边距。
使用 numpy 创建 x 和 y 数据点。
创建一张图像和一组子图。
若要仅将 xtick 标签设定为数字,我们可使用 x.astype(int) 方法。
若要显示图像,请使用 show() 方法。
示例
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.array([1.110, 2.110, 4.110, 5.901, 6.00, 7.90, 8.90]) y = np.array([2.110, 1.110, 3.110, 9.00, 4.001, 2.095, 5.890]) fig, ax = plt.subplots() ax.plot(x, y) ax.set_xticklabels(x.astype(int)) plt.show()
输出
广告