Learn R Programming

toolStability (version 0.1.2)

coefficient_of_determination: Coefficient of determination

Description

coefficient_of_determination calculate variance of a genotype across environments.

Usage

coefficient_of_determination(data, trait, genotype, environment)

Value

a data table with coefficient of determination

Arguments

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

Author

Tien-Cheng Wang

Details

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.

References

pinthus1973toolStability

Examples

Run this code
data(Data)
coef.of.determination <- coefficient_of_determination(
 data = Data,
 trait = "Yield",
 genotype = "Genotype",
 environment = "Environment")

Run the code above in your browser using DataLab