| Ectopic pregnancy {epiDisplay} | R Documentation |
Dataset of a case-control study looking at history of abortion as a risk factor for ectopic pregnancy
Description
This case-control study has one case series and two control groups.
The subjects were recruited based on three types of pregnancy outcome
Usage
data(Ectopic)
Format
A data frame with 723 observations on the following 4 variables.
ida numeric vector
outca factor with levels
EPIADeli
| EP | = ectopic pregnancy | |
| IA | = women coming for induced abortion | |
| Deli | = women admitted for full-term delivery | |
hiaa factor with levels
never IAever IAgravia factor with levels
1-23-4>4
Examples
data(Ectopic)
library(nnet)
data(Ectopic)
.data <- Ectopic
multi1 <- multinom(outc ~ hia + gravi, data=.data)
summary(multi1)
mlogit.display(multi1)
# Changing referent group of outcome
.data$outcIA <- relevel(.data$outc, ref="IA")
multi2 <- multinom(outcIA ~ hia + gravi, data=.data)
summary(multi2)
mlogit.display(multi2)
[Package epiDisplay version 3.5.0.2 Index]