메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
인치와 센티미터 #
이 예 에서는 함수의 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()