| titanic | R Documentation |
The data is an observation-based version of the 1912 Titanic passenger survival log,
data(titanic)
A data frame with 1316 observations on the following 4 variables.
classa factor with levels 1st class 2nd class 3rd class crew
agea factor with levels child adults
sexa factor with levels women man
surviveda factor with levels no yes
titanic is saved as a data frame. Used to assess risk ratios
Found in many other texts
Hilbe, Joseph M (2014), Modeling Count Data, Cambridge University Press Hilbe, Joseph M (2007, 2011), Negative Binomial Regression, Cambridge University Press Hilbe, Joseph M (2009), Logistic Regression Models, Chapman & Hall/CRC
data(titanic)
titanic$survival <- titanic$survived == "yes"
glmlr <- glm(survival ~ age + sex + factor(class), family=binomial, data=titanic)
summary(glmlr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.