当生成hexbin
之类的二元图时,熊猫会生成一个图例,说明每种颜色的频率值:
pokemon.plot.hexbin(x='HP', y='Attack', gridsize=30)
我找不到类似的方法来为seaborn中的jointplot
和kdeplot
生成这样的图例:
sns.jointplot(data=pokemon, x='HP', y='Attack', kind='hex')
sns.kdeplot(pokemon['HP'], pokemon['Attack'], shade=True)
我该怎么办?
答案 0 :(得分:1)
对于kdeplot,只需传递cbar=True
cbar:布尔型,可选
If True and drawing a bivariate KDE plot, add a colorbar.