Rothman | R Documentation |
A case-control study of oral contraceptives and stroke in young women with presence or absence of hypertension. Cases represent thrombotic stroke and controls are hospital controls. The group of no hypertension includes normal blood pressure (<140/90 mm Hg) and borderline hypertension (140-159/90-94 mm Hg). Hypertension group includes moderate hypertension (160-179/95-109 mm Hg) and severe hypertension (180+/110+ mm Hg). This data has been used as an example of join exposure by Rothman for measuring interactions (see examples).
Rothman
A labelled tibble with 477 rows and 3 variables:
Thrombotic stroke, factor with levels "No" and "Yes".
Current user of oral contraceptives, factor with levels "Non-user" and "User".
Hypertension, factor with levels "No" (<160/95 mm Hg) and "Yes".
Collaborative Group for the Study of Stroke in Young Women (1975) Oral contraceptives and stroke in young women. JAMA 231:718-722.
Rothman, KJ (2002) Epidemiology. An Introduction. Oxford University Press.
data(Rothman)
mhor(stroke ~ ht / oc, data = Rothman)
## Model with standard interaction term:
model1 <- glm(stroke ~ ht * oc, data = Rothman, family = binomial)
glm_coef(model1)
## Model considering join exposure:
Rothman$join <- 0
Rothman$join[Rothman$oc == "Non-user" & Rothman$ht == "Yes"] <- 1
Rothman$join[Rothman$oc == "User" & Rothman$ht == "No"] <- 2
Rothman$join[Rothman$oc == "User" & Rothman$ht == "Yes"] <- 3
Rothman$join <- factor(Rothman$join, labels = c(
"Unexposed", "Hypertension", "OC user",
"OC and hypertension"
))
require(sjlabelled, quietly = TRUE)
Rothman$join <- set_label(Rothman$join, label = "Exposure")
model2 <- glm(stroke ~ join, data = Rothman, family = binomial)
glm_coef(model2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.