Guest User

Untitled

a guest
Mar 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. dput(head(reg,20))
  2.  
  3. structure(list(sample = c(13L, 14L, 15L, 13L, 14L, 15L, 13L,
  4. 14L, 15L, 13L, 14L, 15L, 13L, 14L, 15L, 13L, 14L, 15L, 1L, 2L
  5. ), days = c(7L, 7L, 7L, 14L, 14L, 14L, 21L, 21L, 21L, 28L, 28L,
  6. 28L, 35L, 35L, 35L, 42L, 42L, 42L, 7L, 7L), treat = structure(c(1L,
  7. 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
  8. 1L, 2L, 2L), .Label = c("asynchron", "control", "synchron"), class = "factor"),
  9. repl = c(1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L,
  10. 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L), disp = structure(c(2L, 2L,
  11. 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
  12. 2L, 2L, 2L), .Label = c("high", "low", "medium"), class = "factor"),
  13. gbiov = c(205088809L, 236043290L, 182258079L, 356710654L,
  14. 519036032L, 423556500L, 265916788L, 260495312L, 424304021L,
  15. 456717288L, 412530454L, 495216491L, 360012083L, 246070292L,
  16. 351623075L, 99075488L, 141565279L, 109303015L, 157719021L,
  17. 275901505L), rich = c(15L, 15L, 15L, 12L, 12L, 10L, 10L,
  18. 10L, 10L, 8L, 7L, 9L, 9L, 9L, 8L, 6L, 8L, 8L, 15L, 15L),
  19. evenness = c(0.810893754, 0.766130198, 0.82401103, 0.422734873,
  20. 0.365797654, 0.406629574, 0.317890623, 0.434262493, 0.475385016,
  21. 0.311819454, 0.307131166, 0.321269955, 0.365280751, 0.505205296,
  22. 0.43643584, 0.484220445, 0.455471176, 0.423730082, 0.811921742,
  23. 0.833306048)), .Names = c("sample", "days", "treat", "repl",
  24. "disp", "gbiov", "rich", "evenness"), row.names = c(NA, 20L), class = "data.frame")
  25.  
  26. sample days treat repl disp gbiov richness evenness
  27.  
  28. test<-ezANOVA(data=reg, dv=.(gbiov), wid=.(repl), within=.(treat, disp, days))
  29.  
  30. Warnung: Converting "repl" to factor for ANOVA.
  31. Warnung: "days" will be treated as numeric.
  32. Fehler in ezANOVA_main(data = data, dv = dv, wid = wid, within = within, :
  33. One or more cells is missing data. Try using ezDesign() to check your data.
Advertisement
Add Comment
Please, Sign In to add comment