Learn R Programming

toolStability (version 0.1.2)

genotypic_stability: Genotypic stability

Description

genotypic_stability calculate variance of a genotype across environments.

Usage

genotypic_stability(data, trait, genotype, environment, unit.correct = FALSE)

Value

a data table with genotypic stability

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

unit.correct

logical, default is FALSE, returning the stability index with unit equals to squared unit of trait; when TRUE, returning stability index with the unit as same as unit of trait.'

Author

Tien-Cheng Wang

Details

Genotypic stability (Hanson, 1970) is calculatd based on regression function. Variety with low stability variance is considered as stable. Equation of genotypic stability can be found in vignette file.

References

hanson1970toolStability

Examples

Run this code
data(Data)
genotypic.stability <- genotypic_stability(
 data = Data,
 trait = "Yield",
 genotype = "Genotype",
 environment = "Environment",
 unit.correct = FALSE)

Run the code above in your browser using DataLab