如何保存 Matplotlib 3d 旋转图?
若要保存 Matplotlib 3d 旋转图,我们可以采取以下步骤 −
- 设置 figure 大小,并调整子图之间的填充和周围的填充。
- 创建新的 figure 或激活现有的 figure。
- 将'~.axes.Axes'添加到 figure 中,作为子图排列的一部分。
- 返回一个元组 X, Y, Z,其中包含测试数据集。
- 绘制 3D 曲面。
- 以某个角度旋转坐标轴。
- 重新绘制当前 figure。
- 运行 GUI 事件循环几秒钟。
- 要显示 figure,请使用 show() 方法。
示例
from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111, projection='3d') X, Y, Z = axes3d.get_test_data(0.1) ax.plot_wireframe(X, Y, Z, rstride=5, cstride=5) for angle in range(0, 360): ax.view_init(30, angle) plt.draw() plt.pause(.001) plt.show()
输出
广告