E1.20 {SenSrivastava} | R Documentation |
Data on Physical Quality of Life Index (PQLI) Scores and Infant Mortality Rates (IMR) for Selected Indian States
Description
The E1.20
data frame has 13 rows and 7 columns.
Usage
data(E1.20)
Format
This data frame contains the following columns:
- State
-
a character vector, name of state.
- PQLI
-
a numeric vector, Physical Quality of Life Index, a measure of average wealth.
- Comb.IMR
-
a numeric vector, combined infant mortality rate.
- Rur.M.IMR
-
a numeric vector, rural male infant mortality rate.
- Rur.F.IMR
-
a numeric vector, rural female infant mortality rate.
- Urb.M.IMR
-
a numeric vector, urban male infant mortality rate.
- Urb.F.IMR
-
a numeric vector, urban female infant mortality rate.
Source
Dr. T.N.K.Raju, Department of Neonatology, University of Illinois at Chicago.
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)
[Package SenSrivastava version 2015.6.25.1 Index]