powered by
Performs ANOVA for Augmented Randomized Block Design where checks are replicated and test entries appear once.
anova_augmented(data, response, genotype, block, check_names, verbose = TRUE)
List containing ANOVA results and adjusted means
Data frame containing the data
Name of response variable
Name of genotype/entry column
Name of block column
Vector of check variety names
Logical. If TRUE (default), prints formatted output to console.
Lalit Kumar Rolaniya, Ram Lal Jat, Monika Punia, Raja Ram Choudhary
data <- data.frame( block = rep(1:5, each = 7), genotype = c(rep(c("C1","C2","C3"), 5), paste0("T", 1:20)), yield = rnorm(35, 1200, 150) ) # Note: This is simplified example
Run the code above in your browser using DataLab