VOOZH about

URL: https://www.geeksforgeeks.org/python/statsmodels-durbin_watson-in-python/

⇱ statsmodels.durbin_watson() in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

statsmodels.durbin_watson() in Python

Last Updated : 26 Mar, 2020
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 :
Output :
1.2272727272727273
Comment
Article Tags: