Survival of passengers on the Titanic. This data set provides information on the fate of passengers on the fatal maiden voyage of the ocean liner ‘Titanic’. Columns are economic status (Class), Sex, Age and Survived.

data("titanic.raw")

Format

A data frame with 2201 rows and 4 columns.

Examples

data(titanic.raw) data("titanic.raw") with(titanic.raw, table(Class, Survived))
#> Survived #> Class No Yes #> 1st 122 203 #> 2nd 167 118 #> 3rd 528 178 #> Crew 673 212