Learn R Programming

COUNT (version 1.3.4)

titanic: titanic

Description

The data is an observation-based version of the 1912 Titanic passenger survival log,

Usage

data(titanic)

Arguments

Format

A data frame with 1316 observations on the following 4 variables.

Source

Found in many other texts

Details

titanic is saved as a data frame. Used to assess risk ratios

References

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

Examples

Run this code

data(titanic)
titanic$survival <- titanic$survived == "yes"
glmlr <- glm(survival ~ age + sex + factor(class), family=binomial, data=titanic)
summary(glmlr)

Run the code above in your browser using DataLab