I'm trying to make a pairplot of kind scatter plot with histogram diagonals, but when adding a hue the histograms become invalid.
My code before hue:
import seaborn as sn
sn.pairplot(dropped_data)
My code after adding hue:
sn.pairplot(dropped_data, hue='damage rating')
What I have tried:
sn.pairplot(dropped_data, hue='damage rating', diag_kind='hist', kind='scatter')
As you can see, when using a hue, the diagonal histogram it goes all weird and becomes incorrect. How can I fix this?