Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/paulhendricks/titanic

An R data package containing Kaggle Titanic datasets
https://github.com/paulhendricks/titanic

Last synced: 6 days ago
JSON representation

An R data package containing Kaggle Titanic datasets

Awesome Lists containing this project

README

        

---
output:
github_document
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

# titanic

[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/titanic)](http://cran.r-project.org/package=titanic)
[![Downloads from the RStudio CRAN mirror](http://cranlogs.r-pkg.org/badges/titanic)](http://cran.rstudio.com/package=titanic)
[![Build Status](https://travis-ci.org/paulhendricks/titanic.png?branch=master)](https://travis-ci.org/paulhendricks/titanic)
[![Build status](https://ci.appveyor.com/api/projects/status/rux3xlfcdhuxuw4t/branch/master?svg=true)](https://ci.appveyor.com/project/paulhendricks/titanic/branch/master)
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active)

`titanic` is an R package containing data sets providing information on the fate of passengers on the fatal maiden voyage of the ocean liner "Titanic", with variables such as economic status (class), sex, age and survival. These data sets are often used as an introduction to machine learning on [Kaggle](https://www.kaggle.com/). More details about the competition can be found [here](https://www.kaggle.com/c/titanic), and the original data sets can be found [here](https://www.kaggle.com/c/titanic/data).

## Installation

You can install the latest development version from CRAN:

```R
install.packages("titanic")
````

Or from GitHub with:

```R
if (packageVersion("devtools") < 1.6) {
install.packages("devtools")
}
devtools::install_github("paulhendricks/titanic")
```

If you encounter a clear bug, please file a [minimal reproducible example](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) on [GitHub](https://github.com/paulhendricks/titanic/issues).

## Citation

To cite package ‘titanic’ in publications use:

```
Paul Hendricks (2015). titanic: Titanic Passenger Survival Data Set. R package version 0.1.0. https://github.com/paulhendricks/titanic
```

A BibTeX entry for LaTeX users is

```
@Manual{,
title = {titanic: Titanic Passenger Survival Data Set},
author = {Paul Hendricks},
year = {2015},
note = {R package version 0.1.0},
url = {https://github.com/paulhendricks/titanic},
}
```