Description Usage Format Details Source References Examples
Twentype four cotton genotypes were evaluated under two locations at the Mississippi State University Research Farm.
1 |
A data frame with 288 observations on the following 7 variables.
LOC
location
Geno
genotypes
REP
field blocks
BN
Boll number
BS
Boll size
LP
Lint percentage
LY
Lint yield
No other details are needed
Not available
To be added
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ##Sample R codes used to analyze the data set: cot
library(minque)
data(cot)
names(cot)
cot$Geno=factor(cot$Geno)
cot$Loc=factor(cot$LOC)
cot$Rep=factor(cot$REP)
res=lmm(LY~1|Geno*Loc+Loc:Rep,data=cot)
res$Var
res$FixedEffect
res$RandomEffect
res=lmm.jack(LY~1|Geno*Loc+Loc:Rep,data=cot,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.