注意
转到末尾下载完整的示例代码。
SI 前缀偏移和自然数量级#
matplotlib.ticker.EngFormatter
能够计算轴数据的自然偏移,并使用自动计算的标准 SI 前缀呈现它。
下面是一个此类绘图的示例
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.ticker as mticker
# Fixing random state for reproducibility
np.random.seed(19680801)
UNIT = "Hz"
fig, ax = plt.subplots()
ax.yaxis.set_major_formatter(mticker.EngFormatter(
useOffset=True,
unit=UNIT
))
size = 100
measurement = np.full(size, 1e9)
noise = np.random.uniform(low=-2e3, high=2e3, size=size)
ax.plot(measurement + noise)
plt.show()
脚本的总运行时间:(0 分钟 1.134 秒)