1.I want to plot a joint distribution figure in 'hex' style with Seaborn, and I want to add a regression fitting using another data "all_data", and I want the Pearson 'r' and 'p-value' is calculated by 'all_data', but now it's calculated by 'data' which is used to draw 'hex' plot. How can I change the code to achieve my goal. What keywords should I add?
joint_kws={'gridsize':30}
g=sns.jointplot('nature','space',data,kind='hex',size=20,joint_kws= joint_kws)
sns.regplot(x='nature', y='space',data=all_data, ax=g.ax_joint, scatter=False,color='red')
- Where can I find all the detailed keywords that control the size, font, location of legend and other things I can custom the fig by my own. Because I did not find some very detailed description about keywords in seaborn's document in their official website. Where can I get that? Thanks