如何从Matplotlib对数-对数图中移除科学计数法?
为了从Matplotlib对数-对数图中移除科学计数法,我们可以用语句 ax.xaxis.set_minor_formatter(mticker.ScalarFormatter()) 。
步骤
- 设置图形大小并调整子图之间和周围的间距。
- 使用numpy创建x和y数据点。
- 使用 scatter() 方法绘制x和y数据点。
- 使用 set_xscale() 和 set_yscale() 方法设置x和y轴的比例尺。
- 为了移除科学计数法,使用格式化刻度值作为数字。
- 使用 show() 方法显示图像。
更多Matplotlib教程,请访问:Matplotlib教程
示例
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()