CoalMiners(vcd)
CoalMiners()所属R语言包:vcd
Breathlessness and Wheeze in Coal Miners
煤矿工人的呼吸困难和喘息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data from Ashford & Snowden (1970) given by Agresti (1990) on the association between two pulmonary conditions, breathlessness and wheeze, in a large sample of coal miners.
从阿什福德和斯诺登(1970)(1990)阿格雷斯蒂两个肺部疾病,呼吸困难及哮鸣音之间的关联,在大样本的矿工。
用法----------Usage----------
data("CoalMiners")
格式----------Format----------
A 3-dimensional array resulting from cross-tabulating variables for 16,330 coal miners. The variables and their levels are as follows:
一个3维数组造成的交叉制表为16,330名矿工的变量。变量和它们的水平如下:
Name
名称
Wheeze
哮
Breathlessness
呼吸困难
Age
年龄
源----------Source----------
Michael Friendly (2000), Visualizing Categorical Data, pages 82–83, 319–322.
迈克尔·活动(2000年),可视化分类数据,第82-83页,319-322页。
参考文献----------References----------
Categorical Data Analysis. Wiley-Interscience, New York.
Multivariate probit analysis, Biometrics, 26, 535–546.
Visualizing Categorical Data. SAS Institute, Cary, NC.
实例----------Examples----------
data("CoalMiners")
## Fourfold display, both margins equated[#四格显示,左右边距等同于]
fourfold(CoalMiners, mfcol = c(2,4))
## Log Odds Ratio Plot[#登录胜算比图]
summary(l <- oddsratio(CoalMiners))
g <- seq(25, 60, by = 5)
plot(l,
xlab = "Age Group",
main = "Breathlessness and Wheeze in Coal Miners")
m <- lm(l ~ g + I(g^2))
lines(fitted(m), col = "red")
## Fourfold display, strata equated[#四格显示,各阶层等同于]
fourfold(CoalMiners, std = "ind.max", mfcol = c(2,4))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|