Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # Practicing to get regression statistics
  2. a <- lm(GDP05~dem05, data=smalldat)
  3.  
  4. confint(a) # Confidence intervals for the regression coefficients
  5. deviance(a) # Residual sum of squares
  6. fitted(a) # Vector of fitted y values
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement