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

Mplot3d에서 축의 크기를 조정하는 방법은 무엇입니까?

<시간/>

mplot3d에서 축의 크기를 조정하려면 다음 단계를 수행할 수 있습니다. -

  • figure() 를 사용하여 Figure를 생성하거나 기존 Figure를 활성화합니다. 방법.

  • Axes3D()를 사용하여 3D 축 인스턴스 인스턴스화 수업.

  • X축의 크기를 조정하려면 set_xlim3d()를 사용하세요. 방법.

  • Y축을 조정하려면 set_ylim3d()를 사용하세요. 방법.

  • Z축의 크기를 조정하려면 set_zlim3d()를 사용하세요. 방법.

  • 플롯을 표시하려면 show() 를 사용하십시오. 방법.

예시

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlim3d(-100, 100)
ax.set_ylim3d(-100, 100)
ax.set_zlim3d(-100, 100)
plt.show()

출력

Mplot3d에서 축의 크기를 조정하는 방법은 무엇입니까?