I used scipy.stats.linregress function for my dataset. It returns 5 output variables.
Slope = 0.0453
Intercept = 14.905
r-value = 0.91
p-value = 0
standard error of estimate = 0.00015
This is the documentation link if anybody would like to see
Can somebody help in understanding the output? Questions I would like to ask are the two variables highly correlated. The r-value is something that I think points to the correlation, but since it is not 1.0, what would be ways to find out which ones do not satisfy this constraint, can I use any of the parameters here?
In general when you see such values how to grasp them?