matplotlib で3Dグラフを表示したいのですが,
図のように軸とグリット線のみ表示され,肝心のグラフが表示されません.
解決法をご教授いただければ幸いです.
よろしくお願いいたします.
python
1result = [] 2 3lx = list(range(10)) 4ly = list(range(10)) 5 6print(lx) 7print(ly) 8 9for i in lx: 10 for j in ly: 11 result.append(i + j) 12 print(result) 13 14 15import matplotlib.pyplot as plt 16from mpl_toolkits.mplot3d import Axes3D 17 18fig = plt.figure() 19ax = fig.add_subplot(111,projection ='3d') 20 21x = lx 22y = ly 23z = result 24 25ax.scatter 26plt.show
環境Python 3.6.4 |Anaconda, Inc.| 64 bit on win32
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/28 00:52