如何为Seaborn中的双变量图生成颜色图例?

时间:2019-05-16 09:35:35

标签: pandas seaborn

当生成hexbin之类的二元图时,熊猫会生成一个图例,说明每种颜色的频率值:

pokemon.plot.hexbin(x='HP', y='Attack', gridsize=30)

Pandas hexbin plot

我找不到类似的方法来为seaborn中的jointplotkdeplot生成这样的图例:

sns.jointplot(data=pokemon, x='HP', y='Attack', kind='hex')

Seaborn hexbin plot

sns.kdeplot(pokemon['HP'], pokemon['Attack'], shade=True)

Seaborn contour lines plot

我该怎么办?

1 个答案:

答案 0 :(得分:1)

对于kdeplot,只需传递cbar=True

  

cbar:布尔型,可选

If True and drawing a bivariate KDE plot, add a colorbar.