Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. structure(list(Collection = structure(c(1L, 1L, 1L, 1L, 1L, 2L
  2. ), .Label = c("1", "2"), class = "factor"), Irrigation = structure(c(1L,
  3. 2L, 3L, 4L, 5L, 1L), .Label = c("Rate1", "Rate2", "Rate3", "Rate4",
  4. "Rate5"), class = "factor"), meanSuc = c(0.585416666666667, 0.5032,
  5. 0.61375, 0.602775, 0.688466666666667, 0.545133333333333)), row.names =
  6. c(NA,
  7. -6L), groups = structure(list(Collection = structure(1:2, .Label = c("1",
  8. "2"), class = "factor"), .rows = list(1:5, 6L)), row.names = c(NA,
  9. -2L), class = c("tbl_df", "tbl", "data.frame"), .drop = TRUE), class =
  10. c("grouped_df",
  11. "tbl_df", "tbl", "data.frame"))
  12.  
  13. Tukey_data <- dataAvgSucCI %>%
  14. mutate(Tukey_ID = paste(Collection, Irrigation, sep="_"))
  15. TukeyAov <- aov(meanSuc ~ Tukey_ID,Tukey_data)
  16. HSD.test(TukeyAov, "Tukey_ID", group=TRUE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement