下面是matplotlib在本地环境中显示一个黑色窗口的示例。
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
fig = plt.figure()
ax = Axes3D(fig, elev=4, azim=-95)
xs, ys, zs = np.linspace(-2, 2, 60), np.linspace(-2, 2, 60), np.linspace(-2, 2, 60)
ax.scatter(xs=xs, ys=xs, zs=xs)
plt.show()
我知道这个问题不是我的后端,因为我可以在这个网站上运行代码片段很好:
https://matplotlib.org/2.0.2/examples/mplot3d/subplot3d_demo.html
1条答案
按热度按时间thtygnil1#
ax = fig.add_subplot(projection='3d', elev=4, azim=-95)
不是ax = Axes3D(fig, elev=4, azim=-95)
,就像它在example中显示的那样。*在
python 3.11.3
、matplotlib 3.7.1
中测试