Rev 7002 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{Titanic}\alias{Titanic}\title{Survival of passengers on the Titanic}\usage{data(Titanic)}\description{This data set provides information on the fate of passengers on thefatal maiden voyage of the ocean liner `Titanic', summarized accordingto economic status (class), sex, age and survival.}\format{A 4-dimensional array resulting from cross-tabulating 2201observations on 4 variables. The variables and their levels are asfollows:\tabular{rll}{No \tab Name \tab Levels \cr1 \tab Class \tab 1st, 2nd, 3rd, Crew \cr2 \tab Sex \tab Male, Female \cr3 \tab Age \tab Child, Adult \cr4 \tab Survived \tab No, Yes}}\details{The sinking of the Titanic is a famous event, and new books are stillbeing published about it. Many well-known facts---from theproportions of first-class passengers to the ``women and childrenfirst'' policy, and the fact that that policy was not entirelysuccessful in saving the women and children in the third class---arereflected in the survival rates for various classes of passenger.These data were originally collected by the British Board of Trade intheir investigation of the sinking. Note that there is not completeagreement among primary sources as to the exact numbers on board,rescued, or lost.Due in particular to the very successful film `Titanic', the lastyears saw a rise in public interest in the Titanic. Very detaileddata about the passengers is now available on the Internet, at sitessuch as \emph{Encyclopedia Titanica}(\url{http://www.rmplc.co.uk/eduweb/sites/phind}).}\source{Robert J. MacG. Dawson (1995),The `Unusual Episode' Data Revisited.\emph{Journal of Statistics Education}, \bold{3}.\url{http://www.amstat.org/publications/jse/v3n3/datasets.dawson.html}The source provides a data set recording class, sex, age, and survivalstatus for each person on board of the Titanic, and is based on dataoriginally collected by the British Board of Trade and reprinted in:British Board of Trade (1990),\emph{Report on the Loss of the `Titanic' (S.S.)}.British Board of Trade Inquiry Report (reprint).Gloucester, UK: Allan Sutton Publishing.}\examples{data(Titanic)mosaicplot(Titanic, main = "Survival on the Titanic")## Higher survival rates in children?apply(Titanic, c(3, 4), sum)## Higher survival rates in females?apply(Titanic, c(2, 4), sum)## Use loglm() in package `MASS' for further analysis ...}\keyword{datasets}