I created one simple regression model for predicting the amount of loan that needs to be given to a particular individual. I plotted the residual plots to understand the underlying assumptions in the regression. However, I'm not too sure how should I interpret the graph. Could someone please help.
The graph was created using the below code.
sns.residplot(y_train_preds,y_train_preds- y_train)

sns.residplot(y_train_preds, y_train-y_train_preds)– user4943236 Aug 06 '17 at 08:29