Learn R Programming

agridat (version 1.8.1)

fan.stability: Maize hybrids grown in China

Description

Yield of 13 hybrids, grown in 10 locations across 2 years. Conducted in Yunnan, China.

Arguments

source

Fan, X.M. and Kang, M.S. and Chen, H. and Zhang, Y. and Tan, J. and Xu, C. (2007). Yield stability of maize hybrids evaluated in multi-environment trials in Yunnan, China. Agronomy Journal, 99, 220-228. https://www.soils.org/publications/aj/abstracts/99/1/220 Used with permission of Manjit Kang.

Details

Data are the mean of 3 reps. These data were used to conduct a stability analysis of yield.

Examples

Run this code
dat <- fan.stability

dat$env <- factor(paste(dat$loc, dat$year, sep=""))
require(reshape2)
dm <- acast(dat, gen~env, value.var="yield")
require(agricolae)
# Use 0.464 as pooled error from ANOVA.  Calculate yield mean/stability.
stability.par(dm, rep=3, MSerror=0.464) # Table 5 of Fan et al.

Run the code above in your browser using DataLab