Advertisement
gronke

Untitled

Jul 6th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.85 KB | None | 0 0
  1. > fit <- lm(w ~ c + h + o + g, data=mydata)
  2. > summary(fit)
  3.  
  4. Call:
  5. lm(formula = w ~ c + h + o + g, data = mydata)
  6.  
  7. Residuals:
  8.     Min      1Q  Median      3Q     Max
  9. -0.4926 -0.2208 -0.2208  0.5074  0.7792
  10.  
  11. Coefficients: (1 not defined because of singularities)
  12.             Estimate Std. Error t value Pr(>|t|)    
  13. (Intercept) 0.220759   0.006037  36.566  < 2e-16 ***
  14. c           0.271846   0.015930  17.065  < 2e-16 ***
  15. h           0.083388   0.014578   5.720 1.10e-08 ***
  16. o           0.114292   0.016811   6.799 1.13e-11 ***
  17. g                 NA         NA      NA       NA    
  18. ---
  19. Signif. codes:  0***0.001**0.01*0.05 ‘.’ 0.1 ‘ ’ 1
  20.  
  21. Residual standard error: 0.4371 on 7977 degrees of freedom
  22. Multiple R-squared:  0.03833,   Adjusted R-squared:  0.03797
  23. F-statistic:   106 on 3 and 7977 DF,  p-value: < 2.2e-16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement