인치와 센티미터 #

이 예 에서는 함수의 xunitsyunits 매개변수를 사용하여 기본 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()

Sphinx-Gallery에서 생성한 갤러리