Advertisement
Guest User

Shower temp vs. brain speed

a guest
Jan 9th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. > t.test(t1$rt, t2$rt)
  2.  
  3. Welch Two Sample t-test
  4.  
  5. data: t1$rt and t2$rt
  6. t = 2.1511, df = 41.295, p-value = 0.03737
  7. alternative hypothesis: true difference in means is not equal to 0
  8. 95 percent confidence interval:
  9. 0.385243 12.170217
  10. sample estimates:
  11. mean of x mean of y
  12. 549.1340 542.8563
  13.  
  14. > summary(lm(t1$rt ~ t1$X))
  15.  
  16. Call:
  17. lm(formula = t1$rt ~ t1$X)
  18.  
  19. Residuals:
  20. Min 1Q Median 3Q Max
  21. -10.759 -3.166 -1.320 2.319 18.927
  22.  
  23. Coefficients:
  24. Estimate Std. Error t value Pr(>|t|)
  25. (Intercept) 538.8216 3.5192 153.110 < 2e-16 ***
  26. t1$X 0.9821 0.2938 3.343 0.00362 **
  27. ---
  28. Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
  29.  
  30. Residual standard error: 7.576 on 18 degrees of freedom
  31. Multiple R-squared: 0.3831, Adjusted R-squared: 0.3488
  32. F-statistic: 11.18 on 1 and 18 DF, p-value: 0.003619
  33.  
  34. > summary(lm(t2$rt ~ t2$X))
  35.  
  36. Call:
  37. lm(formula = t2$rt ~ t2$X)
  38.  
  39. Residuals:
  40. Min 1Q Median 3Q Max
  41. -16.9757 -2.8727 0.4464 4.1013 9.0075
  42.  
  43. Coefficients:
  44. Estimate Std. Error t value Pr(>|t|)
  45. (Intercept) 580.9219 5.4927 105.763 < 2e-16 ***
  46. t2$X -1.1713 0.1653 -7.086 4.16e-07 ***
  47. ---
  48. Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
  49.  
  50. Residual standard error: 5.606 on 22 degrees of freedom
  51. Multiple R-squared: 0.6953, Adjusted R-squared: 0.6815
  52. F-statistic: 50.21 on 1 and 22 DF, p-value: 4.162e-07
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement