https://github.com/joeroe/r4r_visualisation
Slides, code examples, and exercises for the visualisation module of "R for Archaeologists", a winter school held at the University of Pisa, 2020–2024
https://github.com/joeroe/r4r_visualisation
archaeology r r-visualisation slides
Last synced: 1 day ago
JSON representation
Slides, code examples, and exercises for the visualisation module of "R for Archaeologists", a winter school held at the University of Pisa, 2020–2024
- Host: GitHub
- URL: https://github.com/joeroe/r4r_visualisation
- Owner: joeroe
- Created: 2020-01-31T12:26:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-21T07:32:54.000Z (9 months ago)
- Last Synced: 2025-09-20T09:47:18.196Z (20 days ago)
- Topics: archaeology, r, r-visualisation, slides
- Language: HTML
- Homepage: http://joeroe.io/r4r_visualisation/r4r_visualisation_slides.html
- Size: 107 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# R for Archaeologists: Visualisation
This repository contains the slides and source code for a workshop on visualisation in R, part of the [R for Archaeologists (R4R) winter school](http://www.mappaproject.org/r4rchaeologists/) held at the University of Pisa on:
* 13–24th January 2025
* 22nd January – 2nd February 2024
* 30th January – 10th February 2023
* 24th January – 4th February 2022
* 25th January – 5th February 2021
* 27th January – 7th February 2020The slides use `remark.js` and are generated from an RMarkdown file using the [`xaringan`](https://github.com/yihui/xaringan) package.
You may find it useful to look at the RMarkdown file to see the R code for some of the examples.## How to view the slides
### Online
The built slides are available online at .
Press `p` in the presentation window to view the speaker notes and `c` to open a new window.
### In RStudio
[Clone](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository) or download this repository from GitHub and open `r4r_visualisation.Rproj` in RStudio.
Make sure you have the following packages installed:
```r
install.packages(c("tidyverse", "scales", "rcarbon", "sf", "rnaturalearth", "tidygraph", "ggraph", "remotes", "gt", "archdata", "raster", "xaringan", "xaringanthemer"))
remotes::install_github("joeroe/stratigraphr")
remotes::install_github("rstudio/fontawesome")
```You should then be able to open `r4r_visualisation_slides.Rmd` in RStudio and view the slides using the "knit" button at the top of the editor pane or `knitr::knit("r4r_visualisation_slides.Rmd")`.
Press `p` in the presentation window to view the speaker notes and `c` to open a new window.