Python气泡图

气泡图将数据显示为一组圆圈。 创建气泡图所需的数据需要具有xy坐标,气泡大小和气泡颜色。 颜色可以由库自己提供。

绘制气泡图

气泡图可以使用DataFrame.plot.scatter()方法来创建。

import matplotlib.pyplot as plt
import numpy as np

# create data
x = np.random.rand(40)
y = np.random.rand(40)
z = np.random.rand(40)
colors = np.random.rand(40) 
# use the scatter function
plt.scatter(x, y, s=z*1000,c=colors)
plt.show()

执行上面示例代码,得到以下结果 -


上一篇:Python散点图

下一篇:Python 3D图

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程