英寸和厘米#

此示例说明了使用 plot 函数的 xunitsyunits 参数来覆盖默认 x 和 y 单位(ax1)为英寸和厘米的功能。请注意,应用转换以使数字转换为正确的单位。

此示例需要 basic_units.py

units sample
from basic_units import cm, inch

import matplotlib.pyplot as plt
import numpy as np

cms = cm * np.arange(0, 10, 2)

fig, axs = plt.subplots(2, 2, layout='constrained')

axs[0, 0].plot(cms, cms)

axs[0, 1].plot(cms, cms, xunits=cm, yunits=inch)

axs[1, 0].plot(cms, cms, xunits=inch, yunits=cm)
axs[1, 0].set_xlim(-1, 4)  # scalars are interpreted in current units

axs[1, 1].plot(cms, cms, xunits=inch, yunits=inch)
axs[1, 1].set_xlim(3*cm, 6*cm)  # cm are converted to inches

plt.show()

脚本的总运行时间:(0 分钟 1.034 秒)

由 Sphinx-Gallery 生成的图库