esoph(datasets)
esoph()所属R语言包:datasets
Smoking, Alcohol and (O)esophageal Cancer
吸烟,酗酒和(O)的食管癌
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data from a case-control study of (o)esophageal cancer in Ile-et-Vilaine, France.
(O)在Ile-维莱讷省,法国食管癌的病例对照研究的数据。
用法----------Usage----------
格式----------Format----------
A data frame with records for 88 age/alcohol/tobacco combinations.
一个88岁/酒精/烟草组合的记录数据框。
"agegp"
“agegp”
"alcgp"
“alcgp”
"tobgp"
“tobgp”
"ncases"
“ncases”
"ncontrols"
“ncontrols”
作者(S)----------Author(s)----------
Thomas Lumley
源----------Source----------
Breslow, N. E. and Day, N. E. (1980) Statistical Methods in Cancer Research. 1: The Analysis of Case-Control Studies. IARC Lyon / Oxford University Press.
在癌症研究布瑞斯罗夫,NE和日,NE(1980)的统计方法。 1:病例对照研究分析。里昂的国际癌症研究机构/牛津大学出版社。
举例----------Examples----------
require(stats)
require(graphics) # for mosaicplot[为mosaicplot]
summary(esoph)
## effects of alcohol, tobacco and interaction, age-adjusted[#酒精,烟草和相互作用的影响,年龄调整]
model1 <- glm(cbind(ncases, ncontrols) ~ agegp + tobgp * alcgp,
data = esoph, family = binomial())
anova(model1)
## Try a linear effect of alcohol and tobacco[#尝试使用酒精和烟草的非线性效应]
model2 <- glm(cbind(ncases, ncontrols) ~ agegp + unclass(tobgp)
+ unclass(alcgp),
data = esoph, family = binomial())
summary(model2)
## Re-arrange data for a mosaic plot[#重新安排数据的镶嵌图]
ttt <- table(esoph$agegp, esoph$alcgp, esoph$tobgp)
o <- with(esoph, order(tobgp, alcgp, agegp))
ttt[ttt == 1] <- esoph$ncases[o]
tt1 <- table(esoph$agegp, esoph$alcgp, esoph$tobgp)
tt1[tt1 == 1] <- esoph$ncontrols[o]
tt <- array(c(ttt, tt1), c(dim(ttt),2),
c(dimnames(ttt), list(c("Cancer", "control"))))
mosaicplot(tt, main = "esoph data set", color = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|