I would like to plot 2 seaborn jointplot in a single plot from pd.df
, to understand the dist b/ two classes and their corresponding features in a single graph.
Could some one help me to achieve this? I found solutions for kde plot from another SO question, but I am not sure, hw to get the plot for jointplot?
Below is the sample code & plot. (X & y lim is same for both the plots)
sns.jointplot("x", "y", data=df[class = 1], kind="hex")
sns.jointplot("x", "y", data=df[class =0], kind="hex")