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

Matplotlib에서 Axes3D로 확대/축소하는 방법은 무엇입니까?

<시간/>

Axes3D로 확대/축소하려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • Figure()를 사용하여 새 Figure 생성 또는 기존 Figure 활성화 방법.
  • Axes3D(그림)를 사용하여 3D 축 개체 가져오기 방법.
  • 플롯 x , yz scatter()를 사용하는 데이터 포인트 방법.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

from mpl_toolkits.mplot3d import Axes3D
from matplotlib import pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig = plt.figure()
ax = Axes3D(fig)
x = [2, 4, 6, 3, 1]
y = [1, 6, 8, 1, 3]
z = [3, 4, 10, 3, 1]

ax.scatter3D(x, y, z, c=z, alpha=1, marker='d', s=150)
plt.show()

출력

Matplotlib에서 Axes3D로 확대/축소하는 방법은 무엇입니까?