E1.20(SenSrivastava)
E1.20()所属R语言包:SenSrivastava
Data on Physical Quality of Life Index (PQLI) Scores and Infant Mortality Rates (IMR)
数据身体素质的生活指数(PQLI)成绩和婴儿死亡率(IMR)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The E1.20 data frame has 13 rows and 7 columns.
E1.20数据框有13个行7列。
用法----------Usage----------
data(E1.20)
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
a character vector, name of state.
字符向量,国家名称。
a numeric vector, Physical Quality of Life Index, a measure of average wealth.
一个数值向量,体育生活质量指数,平均财富衡量。
a numeric vector, combined infant mortality rate.
一个数值向量,加之婴幼儿死亡率。
a numeric vector, rural male infant mortality rate.
一个数值向量,农村男性婴儿死亡率。
a numeric vector, rural female infant mortality rate.
一个数值向量,农村女性婴儿死亡率。
a numeric vector, urban male infant mortality rate.
数字向量,城市男性婴儿死亡率。
a numeric vector, urban female infant mortality rate.
一个数值向量,城市女性婴儿死亡率。
源----------Source----------
Dr. T.N.K.Raju, Department of Neonatology, University of Illinois at Chicago.
TNKRaju,新生儿科,伊利诺伊大学芝加哥分校博士。
实例----------Examples----------
data(E1.20)
## Some data reorganization before analysis:[#一些数据重组前分析:]
## Maybe reshape could have been used here?[#也许重塑可以在这里使用?]
e1.20 <- data.frame(rbind(as.matrix(E1.20[,c(2,4)]),
as.matrix(E1.20[,c(2,5)]),
as.matrix(E1.20[,c(2,6)]),
as.matrix(E1.20[,c(2,7)])),row.names=1:52)
attr(e1.20,"names")[[2]] <- "IMR"
e1.20$Female <- c(rep(0,13), rep(1,13),rep(0,13),rep(1,13))
e1.20$Urban <- c(rep(0,26),rep(1,26))
## Now the analysis can start.[#现在的分析就可以开始。]
summary(e1.20)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|