Description Usage Format Examples
The data us example of row-column augmented design.
1 |
A data frame with 75 observations on the following 4 variables.
rows
a numeric vector
columns
a numeric vector
genotypes
gentypes 50 + 5 checks
yield
yield - a numeric vector
1 2 3 4 5 6 7 8 9 10 | data(rowcoldata)
outp <- aug.rowcol(dataframe = rowcoldata, rows = "rows", columns = "columns",
genotypes = "genotypes", yield = "yield")
outp$ANOVA # analysis of variance
outp$Adjustment # adjusted values
# calculation of means
stab <- aggregate( yield ~ genotypes, data=rowcoldata, FUN= mean)
hist(stab$yield, col = "cadetblue", xlab = "Grain Yield",
main = "Mean yields from Augmented Yield Trial")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.