matplotlib中画3D散点图的函数是什么
时间: 2024-04-30 13:23:35 浏览: 105
使用matplotlib中scatter方法画散点图
5星 · 资源好评率100%
Matplotlib中画3D散点图的函数是`scatter`,可以使用`mplot3d`库中的`Axes3D`创建3D坐标系,然后使用`scatter`函数来绘制散点图。示例代码如下:
```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]
y = [6, 7, 8, 9, 10]
z = [11, 12, 13, 14, 15]
ax.scatter(x, y, z)
# 设置坐标轴标签
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
# 显示图形
plt.show()
```
阅读全文