With the help of
statsmodels.durbin_watson() method, we can get the durbin watson test statistics and it is equal to
2*(1-r), where r is autocorrelation between residual.
👁 Image
Syntax : statsmodels.durbin_watson(residual)
Return : Return a single floating point value of durbin watson.
Example #1 :
In this example we can see that by using
statsmodels.durbin_watson() method, we are able to get the durbin watson test statistical value by using this method.
Output :
0.14285714285714285
Example #2 :