python绘制三维散点图
时间: 2023-08-30 18:09:41 浏览: 97
基于python的散点图绘制与实现
可以使用Python的三维数据可视化库如 Matplotlib、Mayavi 来绘制三维散点图。
下面是使用Matplotlib绘制三维散点图的示例代码:
```
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = Axes3D(fig)
x = [1,2,3,4,5,6,7,8,9,10]
y = [2,3,4,5,1,6,2,1,7,2]
z = [1,2,6,3,2,7,3,3,2,1]
ax.scatter(x, y, z)
plt.show()
```
通过运行上述代码,就可以得到一个三维散点图。
阅读全文