Python绘制3D气泡图
时间: 2023-07-05 07:33:25 浏览: 127
python使用Plotly绘图工具绘制气泡图
要绘制3D气泡图,可以使用Python中的matplotlib库和mpl_toolkits库。下面是一个简单的示例代码:
```python
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 生成随机数据
x = np.random.standard_normal(100)
y = np.random.standard_normal(100)
z = np.random.standard_normal(100)
s = np.random.randint(50, 200, size=(100,))
# 绘制气泡图
ax.scatter(x, y, z, s=s, alpha=0.6, edgecolors='w')
# 设置坐标轴标签
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
plt.show()
```
这段代码会生成一组随机数据,然后使用scatter()方法绘制气泡图。s参数指定气泡的大小,alpha参数指定气泡的透明度,edgecolors参数指定气泡的边缘颜色。最后使用set_xlabel()、set_ylabel()和set_zlabel()方法设置坐标轴标签。运行代码后,将会显示一个3D气泡图。
阅读全文