https://github.com/cderv/user2024-tutorial-quarto
Materials for useR 2024 Tutorial on Quarto
https://github.com/cderv/user2024-tutorial-quarto
Last synced: 9 months ago
JSON representation
Materials for useR 2024 Tutorial on Quarto
- Host: GitHub
- URL: https://github.com/cderv/user2024-tutorial-quarto
- Owner: cderv
- License: cc-by-4.0
- Created: 2024-06-28T22:36:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T09:21:25.000Z (almost 2 years ago)
- Last Synced: 2025-01-06T22:25:52.004Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://cderv.github.io/user2024-tutorial-quarto/
- Size: 18 MB
- Stars: 12
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Tutorial: Get Started with Quarto - useR 2024 - Salzburg
This repository contains the source code of the website used for the
tutorial resources, available at
https://cderv.github.io/user2024-tutorial-quarto/
## To be ready and do the exercises
Setting up your environment:
- Download and install the latest versions of R, RStudio and Quarto:
- A recent version of R (4.4 or higher)
- The latest version of RStudio (`2024.04.2-764` or higher)
- The latest version of Quarto `1.5` available at
- Install the following packages:
``` r
# For the exercises
# (dplyr and ggplot2 should be sufficient if you don't want the entire tidyverse)
pkg_list <- c("rmarkdown", "palmerpenguins", "gt", "tidyverse")
# R base
install.packages(pkg_list)
# or using pak
pak::pkg_install(pkg_list)
```
If you prefer to have the files locally in advance:
- Download [`exercises.zip`](exercises.zip). This compressed folder
contains various resources that may be useful for the exercises. Unzip
it on your desktop or in a location that you can easily locate on your
computer. You will be able to simply copy and paste the files you need
throughout the tutorial.
- Download [`examples-correction.zip`](examples-correction.zip). **This
is the equivalent of exercise solutions - Do not look in advance if
you really want to practice on the day**. This compressed folder
contains various resources used as examples and demonstrations. Unzip
it on your desktop or in a location that you can easily locate on your
computer. You will be able to simply copy and paste the files you need
throughout the tutorial.
## Licence
 This work is
licensed under a [Creative Commons Attribution 4.0 International
License](https://creativecommons.org/licenses/by/4.0/).
## Acknowlegments
Thanks to Andrew Bray and Mine Cetinkaya-Rundel for their work on
Materials for the [“From R Markdown to Quarto” ASA Traveling
workshop](https://github.com/asa-quarto/website). This tutorial inspires
from it, and borrows with adaptations some parts.