Description Usage Arguments Value Author(s) Examples
The function implements analysis of augmented random row and column design.
1 | aug.rowcol(dataframe, rows, columns, genotypes, yield)
|
dataframe |
dataframe object with at least columns with information of rows, columns, genotypes / entries/ varieties / or treatments and yield (yvariable) |
rows |
name of numbericnumeric variable with rows number |
columns |
name of numeric variable with column number |
genotypes |
name of column with with treatments / genotypes (factor) |
yield |
name of column with yield or any y variable |
ANOVA |
Analysis of Variance Table |
Adjustment |
Original and Adjusted Phenotypic value |
se_check |
Difference between check means |
se_within |
Difference adjusted yield of two genotypes / varitiesvarieties / entries in same row or column |
se_diff |
Difference between two genotypes / varieties / entries in different rows or blocks |
se_geno_check |
Difference between two genotypes / varieties / entries and a check mean |
Umesh Rosyara
1 2 3 4 5 6 7 8 9 10 11 12 13 | # example 1
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.