cot {minque} | R Documentation |
Twenty four cotton genotypes with four agronomic traits
Description
Twentype four cotton genotypes were evaluated under two locations at the Mississippi State University Research Farm.
Usage
data(cot)
Format
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
Details
No other details are needed
Source
Not available
References
To be added
Examples
##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
[Package minque version 2.0.0 Index]