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.
- Host: GitHub
- URL: https://github.com/schw4b/titanic
- Owner: schw4b
- Created: 2024-11-01T12:41:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-21T15:09:49.000Z (over 1 year ago)
- Last Synced: 2025-03-21T16:23:54.397Z (over 1 year ago)
- Topics: quarto, r, statistics
- Language: HTML
- Homepage: https://www.statsyup.org/titanic/
- Size: 4.97 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```