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

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

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

![](https://i.creativecommons.org/l/by/4.0/88x31.png) 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.