I get the error when I try and plot this-
sns.distplot(X_train, x='Age') #Age is a feature in X_train
I get a similar error when I try and add the hue parameter in there
sns.distplot(X_train['Age'], hue=y_train)
TypeError: distplot() got an unexpected keyword argument 'hue'
What am I doing wrong? Here is where I am trying out the code from-