Exam3.1.1 {eda4treeR} | R Documentation |
Exam3.1.1 is part of data from Australian Centre for Agricultural Research (ACIAR) in Queensland, Australia (Experiment 309).
Muhammad Yaseen (myaseen208@gmail.com)
Sami Ullah (samiullahuos@gmail.com)
Williams, E.R., Matheson, A.C. and Harwood, C.E. (2002).Experimental Design and Analysis for Tree Improvement. CSIRO Publishing.
library(tidyverse)
data(DataExam3.1.1)
fm3.8 <- lm(
formula = Mean~Repl+SeedLot
, data = DataExam3.1.1
#, subset
#, weights
#, na.action
, method = "qr"
, model = TRUE
, x = FALSE
, y = FALSE
, qr = TRUE
, singular.ok = TRUE
, contrasts = NULL
)
anova(fm3.8)
DataExam3.1.1 %>%
dplyr::ungroup() %>%
dplyr::group_by(SeedLot) %>%
dplyr::summarize(Mean=mean(Mean))