Skip to content

Instantly share code, notes, and snippets.

@vosbs
Created April 21, 2020 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vosbs/519e5e899372fc792476b86ac7af2da6 to your computer and use it in GitHub Desktop.
Save vosbs/519e5e899372fc792476b86ac7af2da6 to your computer and use it in GitHub Desktop.
m5000_7
Xc = train[['thickness', 'delta']]
Xc = sm.add_constant(Xc)
Yc = train[['speed']]
modc = sm.OLS(Yc, Xc)
resc = modc.fit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment