Description Usage Format Source Examples
Phenotype and genotype data from the Finland United States Investigation of NIDDM (type 2) Diabetes (FUSION) study.
| 1 | 
Data frames with the following variables.
idsubject ID number for matching between data sets
t2da factor with levels case control
bmibody mass index
sexa factor with levels F M
ageage of subject at time phenotypes were colelcted
smokera factor with levels former never occasional regular
choltotal cholesterol
waistwaist circumference (cm)
weightweight (kg)
heightheight (cm)
whrwaist hip ratio
sbpsystolic blood pressure
dbpdiastolic blood pressure
markerRS name of SNP
markerIDnumeric ID for SNP
allele1first allele coded as 1=A, 2=C, 3=G, 4=T
allele2second allele coded as 1=A, 2=C, 3=G, 4=T
genotypeboth alleles coded as a factor
Adosenumber of A alleles
Cdosenumber of C alleles
Gdosenumber of G alleles
Tdosenumber of T alleles
Similar to the data presented in
Laura J. Scott, Karen L. Mohlke, Lori L. Bonnycastle, Cristen J. Willer, Yun Li, William L. Duren, Michael R. Erdos, Heather M. Stringham, Pe- ter S. Chines, Anne U. Jackson, Ludmila Prokunina-Olsson, Chia-Jen J. Ding, Amy J. Swift, Narisu Narisu, Tianle Hu, Randall Pruim, Rui Xiao, Xiao- Yi Y. Li, Karen N. Conneely, Nancy L. Riebow, Andrew G. Sprau, Maurine Tong, Peggy P. White, Kurt N. Hetrick, Michael W. Barnhart, Craig W. Bark, Janet L. Goldstein, Lee Watkins, Fang Xiang, Jouko Saramies, Thomas A. Buchanan, Richard M. Watanabe, Timo T. Valle, Leena Kinnunen, Goncalo R. Abecasis, Elizabeth W. Pugh, Kimberly F. Doheny, Richard N. Bergman, Jaakko Tuomilehto, Francis S. Collins, and Michael Boehnke, A genome-wide association study of type 2 diabetes in Finns detects multiple susceptibility vari- ants, Science (2007).
| 1 2 3 4 5 6 7 | data(pheno); data(fusion1); data(fusion2)
fusion1m <- merge(fusion1, pheno, by="id", all.x=FALSE, all.y=FALSE) 
xtabs(~t2d + genotype, fusion1m) 
xtabs(~t2d + Gdose, fusion1m) 
chisq.test( xtabs( ~t2d + genotype, fusion1m ) )
f1.glm <- glm( factor(t2d) ~ Gdose, fusion1m, family=binomial) 
summary(f1.glm)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.