我通过以下代码绘制散点图:
import matplotlib.pyplot as plt
x = [2,4,6]
y = [1,3,7]
r = [650,890,320]
clr = ['r','b','g']
bubble_id = ['C0','C1','C2']
H0 = plt.scatter(x,y,s=r,c=clr)
然后我想把'set_gid()'
三个泡泡'C0', 'C1' ,'C2'
分别作为。怎么做 ?作为H0
单个对象<matplotlib.collections.PathCollection object at 0x0ADA6D30>
,我不知道如何分解 H0 并找到 H0 的三个“泡泡儿子”。感谢您的提示。