-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpart1.Rmd
55 lines (40 loc) · 3.68 KB
/
part1.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: "Part 1: Dipping Your Toes into Data Visualization with R"
author: "Emi Tanaka"
date: "6th Decemeber 2021"
---
## Slides
We recommend that you open the html slides <i class="fas fa-link"></i> with [Google Chrome web browser](https://www.google.com/intl/en_au/chrome/).
0. Getting started [<i class="fas fa-link"></i>](slides/part1-session0.html) [<i class="fas fa-file-pdf"></i>](slides/part1-session0.pdf)
1. Grammar of Graphics [<i class="fas fa-link"></i>](slides/part1-session1.html) [<i class="fas fa-file-pdf"></i>](slides/part1-session1.pdf)
2. Multiple layers, facetting and tidying your data [<i class="fas fa-link"></i>](slides/part1-session2.html) [<i class="fas fa-file-pdf"></i>](slides/part1-session2.pdf)
3. Scales and color [<i class="fas fa-link"></i>](slides/part1-session3.html) [<i class="fas fa-file-pdf"></i>](slides/part1-session3.pdf)
4. Publication-ready plots [<i class="fas fa-link"></i>](slides/part1-session4.html) [<i class="fas fa-file-pdf"></i>](slides/part1-session4.pdf)
## Schedule
Time | Activity
:----|:---
8.45-9.00 | Registration + Installation Help
9.00-9.30 | **Lesson 1:** Getting started with grammar of graphics
9.30-9.45 | *Break out session*
9.45-10.15 | **Lesson 2:** Multiple layers, facetting and tidying your data
10.15-10.30 | *Break out session*
10.30-11.00 | *Coffee Break*
11.00-11.30 | **Lesson 3:** Scales and color
11.30-11.45 | *Break out session*
11.45-12.15 | **Lesson 4:** Publication-ready plots
12.15-12.30 | *Break out session*
## Exercises
Before getting started, you will need to install the following R-packages:
```r
```{r, echo = FALSE, results='asis'}
pkgs <- readLines("install-pkgs-day1.txt")
pkgsq <- paste0("'", pkgs, "'")
glue::glue("
install.packages(c( {paste0(pkgsq, collapse=',\\n\\t\\t\\t\\t\\t')}))
")
```
```
1. Mastering the `geom`s <a class="tag" href="exercises/part1-exercise-01.Rmd" download><i class="fas fa-download"></i> Rmd</a> <a class="tag" href="exercises/part1-exercise-01.html" target="_blank"><i class="fas fa-globe"></i> html</a> <a class="tag" href="exercises/part1-exercise-01-solution.Rmd" download><i class="fas fa-download"></i> solution Rmd</a> <a class="tag" href="exercises/part1-exercise-01-solution.html" target="_blank"><i class="fas fa-globe"></i> html solution</a>
2. Taming data and multiples <a class="tag" href="exercises/part1-exercise-02.Rmd" download><i class="fas fa-download"></i> Rmd</a> <a class="tag" href="exercises/part1-exercise-02.html" target="_blank"><i class="fas fa-globe"></i> html</a> <a class="tag" href="exercises/part1-exercise-02-solution.Rmd" download><i class="fas fa-download"></i> solution Rmd</a> <a class="tag" href="exercises/part1-exercise-02-solution.html" target="_blank"><i class="fas fa-globe"></i> html solution</a>
3. Playing with scales and color <a class="tag" href="exercises/part1-exercise-03.Rmd" download><i class="fas fa-download"></i> Rmd</a> <a class="tag" href="exercises/part1-exercise-03.html" target="_blank"><i class="fas fa-globe"></i> html</a> <a class="tag" href="exercises/part1-exercise-03-solution.Rmd" download><i class="fas fa-download"></i> solution Rmd</a> <a class="tag" href="exercises/part1-exercise-03-solution.html" target="_blank"><i class="fas fa-globe"></i> html solution</a>
4. Jazzy plots <a class="tag" href="exercises/part1-exercise-04.Rmd" download><i class="fas fa-download"></i> Rmd</a> <a class="tag" href="exercises/part1-exercise-04.html" target="_blank"><i class="fas fa-globe"></i> html</a> <a class="tag" href="exercises/part1-exercise-04-solution.Rmd" download><i class="fas fa-download"></i> solution Rmd</a> <a class="tag" href="exercises/part1-exercise-04-solution.html" target="_blank"><i class="fas fa-globe"></i> html solution</a>