toxo(SMPracticals)
toxo()所属R语言包:SMPracticals
Toxoplasmosis Data
弓形体病资料
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data on the relation between rainfall and the numbers of people testing positive for toxoplasmosis in 34 cities in El Salvador.
降雨和检测呈阳性弓形虫病的34个城市的萨尔瓦多人的数字数据之间的关系。
用法----------Usage----------
data(toxo)
格式----------Format----------
A data frame with 34 observations on the following 3 variables.
一个数据框,34以下3个变量的观察。
rain Annual rainfall (mm)
雨年降雨量(毫米)
m Number of persons tested
米测试的人的数量
r Number of persons testing positive for toxoplasmosis
r个检测呈阳性弓形虫病的人
源----------Source----------
Efron, B. (1986) Double exponential families and their use in generalized linear regression. Journal of the American Statistical Association, 82,
埃弗龙,B.(1986)双指数在广义线性回归家庭和他们的使用。 [美国统计协会,82,
参考文献----------References----------
实例----------Examples----------
data(toxo)
anova(glm(cbind(r,m-r)~poly(rain,3),data=toxo,family=binomial),test="Chi")
fit <- glm(cbind(r,m-r)~poly(rain,3),data=toxo,family=quasibinomial)
anova(fit,test="F")
summary(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|