Description Usage Format Details Source Examples
Effects of age and smoking status on breathing test results for workers in industrial plants in Texas.
1 |
A data frame with 18 observations on the following 4 variables.
a factor with levels <40
40-59
number of workers in group
a factor with levels Current.smoker
Former.smoker
Never.smoked
a factor with levels Abnormal
Borderline
Normal
We consider the effects of age and smoking status upon breathing test results for workers in industrial plants in Texas. The test results are given on an ordered scale with categories "Abnormal", "Borderline" and "Normal". It is of interest how age and smoking status are connected to breathing test results.
Ludwig Fahrmeir, Gerhard Tutz (1994): Multivariate Statistical Modelling Based on Generalized Linear Models. Springer Series in Statistics. Springer Verlag. New-York Berlin Heidelberg
1 2 3 4 5 6 7 8 9 10 11 | str(breath)
breath$Breathing.test <- ordered(breath$Breathing.test)
library(MASS)
breath.polr1 <- polr(Breathing.test ~ Age*Smoking.status, weight=n,
data=breath)
breath.polr2 <- polr(Breathing.test ~ Age*Smoking.status, weight=n,
data=breath, method="cloglog")
summary(breath.polr1)
summary(breath.polr2)
# continuation ratio models (as of page 89) might be fitted with
# Design or VGAM package.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.