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()

執行上面範例程式碼,得到以下結果 -