Python でデータ ポイントの xs、ys、zs の 3 つのリストがあり、メソッドをmatplotlib
使用して3D プロットを作成しようとしています。scatter3d
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
plt.xlim(290)
plt.ylim(301)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
ax.scatter(xs, ys, zs)
plt.savefig('dateiname.png')
plt.close()
plt.xlim()
とはplt.ylim()
正常に動作しますが、境界線を z 方向に設定する関数が見つかりません。どうすればそうできますか?