파이썬 Jupyter | 3D 그래프를 회전하는 방법
Python Jupyter 노트북에서 그래프를 회전하는 방법에 대해 잘 모르겠습니다. 정적이며 마우스 움직임으로 회전하지 않습니다. from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection='3d') x =[1,2,3,4,5,6,7,8,9,10] y =[5,6,2,3,13,4,1,2,4,8] z =[2,3,3,3,5,7,9,11,9,10] ax.scatter(x, y, z, c='r', marker='o') ax.set_xlabel('X Label') ax.set_ylabel('Y Label') ax.set_zlabel('Z Label..
2020. 10. 15.