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

https://github.com/schw4b/titanic

A reanalysis of the Titanic data set in R and Quarto.
https://github.com/schw4b/titanic

quarto r statistics

Last synced: over 1 year ago
JSON representation

A reanalysis of the Titanic data set in R and Quarto.

Awesome Lists containing this project

README

          

# Dynamic reporting with R and Quarto: reanalyzing the Titanic dataset

## What you need on your computer

- R
- RStudio Desktop
- git

## Get started

1. Download the repository locally

```
git clone https://github.com/schw4b/titanic.git
```

2. Open the titanic project and the analysis file

- Start RStudio, click the Menu "File", "Open Project...", and open the file `titanic.Rproj`.
- Click "File", "Open File.." and open the Quarto Document `titanic.qmd`.

3. Install the required R packages

``` r
install.packages("carData")
install.packages("testit")
```

4. Press "Render"

You should see the final document in your browser, just like here on my website .

## How to publish this document?

```
quarto publish gh-pages titanic.qmd
```