agridat (version 1.16)

fan.stability: Multi-environment trial of maize hybrids in China

Description

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

Arguments

Format

A data frame with 260 observations on the following 5 variables.

gen

genotype

maturity

maturity, days

year

year

loc

location

yield

yield, Mg/ha

Details

Data are the mean of 3 reps.

These data were used to conduct a stability analysis of yield.

Examples

Run this code
# NOT RUN {
data(fan.stability)
dat <- fan.stability

dat$env <- factor(paste(dat$loc, dat$year, sep=""))
require(lattice)
dotplot(gen~yield|env, dat, main="fan.stability")

if(require(reshape2) & require(agricolae)){
  dm <- acast(dat, gen~env, value.var='yield')
  # 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 DataCamp Workspace