I'd like to make comparing this Prediction and Test values easier, so I'm thinking two ways to achieve that:
- Scale the X and Y axis to the same scale
- Plot a linear line (y=x)
- Really like to have some way to either 'exclude' the outliers or perhaps 'zoom in' to the area where the points are dense, without manually excluding the outliers from the dataset (so its done automatically). Is this possible?
sns.scatterplot(y_pred, y_true)
plt.grid()
Looked around and tested plt.axis('equal')
as mentioned on another question but it didn't seem quite right. Tried using plt.plot((0,0), (30,30))
to create the linear plot but it didn't show anything. Any other input on how to visualise this would be really appreciated as well. Thanks!