Description Usage Format Details Source References Examples
Maize variety trial with two years and multi-locations in China.
1 |
A data frame with 260 observations (rows) on the following 4 variables (columns).
Cultivar
cultivar names
Year
testing year
Location
testing locations
Yld
maize yield
No other details available
Fan X.M., Kang M.S., Chen H.M., Zhang Y.D., Tan J., Xu C.X. (2007) Yield stability of maize hybrids evaluated in multi-environment trials in Yunnan, China. Agronomy Journal.99:220-228
Fan X.M., Kang M.S., Chen H.M., Zhang Y.D., Tan J., Xu C.X. (2007) Yield stability of maize hybrids evaluated in multi-environment trials in Yunnan, China. Agronomy Journal.99:220-228
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | library(minque)
data(maize)
#names(maize)
res=lmm(Yld~1|Cultivar*Year+Cultivar*Location+Year*Location,data=maize)
res$Var
res$FixedEffect
res$RandomEffect
res=lmm.jack(Yld~1|Cultivar*Year+Cultivar*Location+Year*Location,
data=maize,JacNum=10,JacRep=1,ALPHA=0.05)
res$Var
res$PVar
res$FixedEffect
res$RandomEffect
##End
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.