powered by
Performs ANOVA for Alpha Lattice (Resolvable Incomplete Block) Design.
anova_alpha_lattice( data, response, genotype, replication, block, verbose = TRUE )
List containing ANOVA results
Data frame containing the data
Name of response variable
Name of genotype column
Name of replication column
Name of incomplete block column (nested within replication)
Logical. If TRUE (default), prints formatted output to console.
Lalit Kumar Rolaniya, Ram Lal Jat, Monika Punia, Raja Ram Choudhary
data <- expand.grid(rep = 1:2, block = 1:5, entry = 1:4) data$genotype <- paste0("G", 1:nrow(data)) data$yield <- rnorm(nrow(data), 1200, 150)
Run the code above in your browser using DataLab