You need to do this manually by creating a new axis using add_axes and then pass the ax name to plt.colorbar()
import numpy as np import seaborn as sns x = np.random.normal(0.0,1.0,1000) y = np.random.normal(0.0,1.0,1000) hexplot = sns.jointplot(x, y, kind="hex") sns.plt.subplots_adjust(left=0.2, right=0.8, top=0.8, bottom=0.2)

Sources: I almost gave up after I read dev, let me know that
"the coefficient of work / benefit [for the implementation of color panels] is too high"
but then I found this solution in another problem .
crypdick
source share