气泡图将数据显示为一组圆圈。 创建气泡图所需的数据需要具有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()
执行上面示例代码,得到以下结果 -