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()
     
    它的输出如下 -
    气泡图.png