ノート
完全なサンプルコードをダウンロードするには、ここをクリックしてください
インチとセンチメートル#
この例は、関数のxunitsおよびyunitsパラメーターを
使用して、デフォルトの x および y 単位 (ax1) をインチおよびセンチメートルにオーバーライドする機能を示していplot
ます。数値を正しい単位に変換するために変換が適用されることに注意してください。
この例ではbasic_units.py
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, constrained_layout=True)
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()