python中matplotlib画3d图
时间: 2023-08-31 09:09:57 浏览: 89
生产实习练习-python,使用jupyter-notebook,和matplotlib库画图 适合新手,通俗易懂!!!
在Python中,可以使用Matplotlib库来绘制3D图形。下面是一个简单的例子:
```python
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# 创建一个3D图形对象
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 生成数据
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y = [5, 6, 2, 3, 13, 4, 1, 2, 4, 8]
z = [2, 3, 3, 3, 5, 7, 9, 11, 9, 10]
# 绘制3D散点图
ax.scatter(x, y, z, c='r', marker='o')
# 设置坐标轴标签
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
# 显示图形
plt.show()
```
这段代码将生成一个简单的3D散点图,其中x、y、z分别是数据点的坐标,用scatter()方法绘制。可以使用set_xlabel()、set_ylabel()和set_zlabel()方法来设置坐标轴标签。最后使用show()方法显示图形。
阅读全文