Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. > MangroveToads <- read.csv(file.choose(), header=TRUE)
  2. > MangroveToads.mod=aov(BP~Diet+factor(Location), data=MangroveToads)
  3. > anova(MangroveToads.mod)
  4. Analysis of Variance Table
  5.  
  6. Response: BP
  7. Df Sum Sq Mean Sq F value Pr(>F)
  8. Diet 2 1049.20 524.60 24.1011 0.0004105 ***
  9. factor(Location) 4 523.07 130.77 6.0077 0.0155690 *
  10. Residuals 8 174.13 21.77
  11. ---
  12. Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
  13. > TukeyHSD(MangroveToads.mod)
  14. Tukey multiple comparisons of means
  15. 95% family-wise confidence level
  16.  
  17. Fit: aov(formula = BP ~ Diet + factor(Location), data = MangroveToads)
  18.  
  19. $Diet
  20. diff lwr upr p adj
  21. Diet_B-Diet_A 4.0 -4.431478 12.43148 0.4065532
  22. Diet_C-Diet_A 19.4 10.968522 27.83148 0.0004488
  23. Diet_C-Diet_B 15.4 6.968522 23.83148 0.0020439
  24.  
  25. $`factor(Location)`
  26. diff lwr upr p adj
  27. 2-1 -4.0000000 -17.160335 9.160335 0.8260367
  28. 3-1 -15.0000000 -28.160335 -1.839665 0.0261261
  29. 4-1 -11.0000000 -24.160335 2.160335 0.1085312
  30. 5-1 -0.6666667 -13.827002 12.493669 0.9997400
  31. 3-2 -11.0000000 -24.160335 2.160335 0.1085312
  32. 4-2 -7.0000000 -20.160335 6.160335 0.4163798
  33. 5-2 3.3333333 -9.827002 16.493669 0.8983862
  34. 4-3 4.0000000 -9.160335 17.160335 0.8260367
  35. 5-3 14.3333333 1.172998 27.493669 0.0329869
  36. 5-4 10.3333333 -2.827002 23.493669 0.1376592
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement