View source: R/coefficient_of_determination.R
coefficient_of_determination | R Documentation |
coefficient_of_determination
calculate variance of a genotype across environments.
coefficient_of_determination(data, trait, genotype, environment)
data |
a dataframe containing trait, genotype and environment. |
trait |
colname of a column containing a numeric vector of interested trait to be analysized. |
genotype |
colname of a column containing a character or factor vector labeling different genotypic varieties |
environment |
colname of a column containing a character or factor vector labeling different environments |
Coefficient of determination (Pinthus, 1976) is calculatd based on regression function. Variety with low coefficient of determination is considered as stable. Equation of coefficient of determination can be found in vignette file.
a data table with coefficient of determination
Tien-Cheng Wang
pinthus1973toolStability
data(Data)
coef.of.determination <- coefficient_of_determination(
data = Data,
trait = "Yield",
genotype = "Genotype",
environment = "Environment")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.