如何去除 Matplotlib 对数-对数绘图中的科学标号?
若要从 matplotlib 对数-对数绘图中去除科学标号,我们可以使用 ax.xaxis.set_minor_formatter(mticker.ScalarFormatter()) 语句。
步骤
- 设置图像的大小并调整子图之间以及周围的内边距。
- 使用 numpy 创建 x 和 y 数据点。
- 使用 scatter() 方法绘制 x 和 y 数据点。
- 使用 set_xscale() 和 set_yscale() 方法设置 x 和 y 轴比例。
- 若要去除科学标号,请将刻度值格式化为一个数字。
- 若要显示图像,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt, ticker as mticker plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.array([1, 7, 6, 4, 0]) y = np.array([6, 2, 3, 5, 1]) plt.scatter(y, x, c=x, cmap="copper") ax = plt.gca() ax.set_xscale('log') ax.set_yscale('log') ax.xaxis.set_minor_formatter(mticker.ScalarFormatter()) plt.show()
输出
广告