英寸和公分#

此範例說明了使用 xunitsyunits 參數來覆寫預設 x 和 y 單位 (ax1) 為英寸和公分的功能,適用於 plot 函數。請注意,會套用轉換以取得正確單位的數字。

此範例需要 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 產生的圖庫