Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

간단한 matplotlib 축을 회전하는 방법은 무엇입니까?

<시간/>

간단한 matplotlib 축을 회전하려면 다음 단계를 수행할 수 있습니다. -

  • 필수 패키지 가져오기 -
import matplotlib.pyplot as plt
from matplotlib.transforms import Affine2D
import mpl_toolkits.axisartist.floating_axes as floating_axes
  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 새 그림을 만들거나 기존 그림을 활성화합니다.
  • 극단축의 튜플을 만듭니다.
  • 변경 가능한 2D 아핀 변환 추가, "t" . 이 변환에 회전(도)을 제자리에 추가합니다.
  • 소스(곡선) 좌표에서 대상(직선) 좌표로의 변환을 추가합니다.
  • GridHelperCurveLinear()를 사용하여 현재 그림에 부동 축 "h"를 추가합니다. 예.
  • 하위 플롯 배열의 일부로 그림에 '도끼'를 추가합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

# import the packages
import matplotlib.pyplot as plt
from matplotlib.transforms import Affine2D
import mpl_toolkits.axisartist.floating_axes as floating_axes

# set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# plot the figure
fig = plt.figure()

scales = (0, 5, 0, 5)

# Add 2D affine transformation
t = Affine2D().rotate_deg(25)

# Add floating axes
h = floating_axes.GridHelperCurveLinear(t, scales)
ax = floating_axes.FloatingSubplot(fig, 111, grid_helper=h)

fig.add_subplot(ax)

plt.show()

출력

다음 출력을 생성합니다 -

간단한 matplotlib 축을 회전하는 방법은 무엇입니까?