Description Usage Format References Examples
Example data for analysis of North Carolina design II (Comstock and Rosbinson 1952).
1 |
A data frame with 300 observations on the following 9 variables.
LocLoc
setSet
repreplication
femalefemail
malemale
plrvplrv
yieldyield
tubertuber
weightweight
Comstock R.F., Rosbinson F.F (1952). Estimation of average dominance of genes. In Heterosis, Iowa State College Press, Iowa City, Iowa, chapter 30.
Singh R.K., Chaudhary B.D.(1985) Biometrical Methods in Quantitative Genetics Analysis, Kalyani Publishers
Mather K., Jinks J.L. (1971). Biometrical Genetics. Chapman & Hall, London.
Saxton A. (2004) Genetic Analysis of Complex Traits Using SAS. SAS Institute, Inc.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(northcaro2)
# for trait yield
myo <- carolina2(dataframe = northcaro2, set = "set", male = "male", female = "female",
replication = "rep", yvar = "yield")
anova(myo$model) # anova
myo$var.m
myo$var.f
myo$var.mf
myo$var.Af
myo$var.D
# for trait tuber
tum <- carolina2(dataframe = northcaro2, set = "set", male = "male", female = "female",
replication = "rep", yvar = "tuber")
anova(tum$model)
anova(tum$model) # anova
tum$var.m
tum$var.f
tum$var.mf
tum$var.Af
tum$var.D
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.