4.5.5 Joint plot
1. Scatter Histogram Plot
sns.jointplot(x='S1', y='S2', data=df, color = 'dodgerblue')
2. Density Histogram Plot

3. Hex Histogram Plot

Last updated
sns.jointplot(x='S1', y='S2', data=df, color = 'dodgerblue')


Last updated
sns.jointplot('S1', 'S2', data = df, kind='kde', color = 'dodgerblue')sns.jointplot('S1', 'S2', data = df, kind='hex', color = 'dodgerblue')