python绘制3d图
时间: 2023-07-06 17:27:02 浏览: 178
python绘制玫瑰
5星 · 资源好评率100%
要在Python中绘制3D图,可以使用Matplotlib库中的mplot3d模块。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
from mpl_toolkits import mplot3d
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 生成数据
x = [1, 2, 3, 4, 5]
y = [2, 3, 4, 5, 6]
z = [3, 4, 5, 6, 7]
# 绘制3D散点图
ax.scatter(x, y, z)
# 设置坐标轴标签
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
plt.show()
```
这将生成一个简单的3D散点图。你可以根据需要调整数据和图形设置。
阅读全文