-
Notifications
You must be signed in to change notification settings - Fork 10
/
home_content.Rmd
69 lines (55 loc) · 2.1 KB
/
home_content.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
title: "Content"
output:
bookdown::html_document2:
highlight: textmate
toc: false
toc_float:
collapsed: true
smooth_scroll: true
print: false
toc_depth: 4
number_sections: false
df_print: default
code_folding: none
self_contained: false
keep_md: false
encoding: 'UTF-8'
css: "assets/lab.css"
include:
after_body: assets/footer-lab.html
---
```{r,child="assets/header-lab.Rmd"}
```
This page contains links to different lectures (slides) and practical exercises (labs) that are part of this workshop. The links below are similar to that under [Schedule](home_schedule.html) but organised here by topic.
**Basics**
* [Intro to R (Slides)](slide_r_intro.html)
* [Intro to R environment (Slides)](slide_r_environment.html)
* [Intro to programming in R (Slides)](slide_r_programming_1.html)
* [Variables and Operators (Slides)](slide_r_elements_1.html)
* [Data types (Lab)](lab_datatypes.html)
* [Vectors and Strings (Slides)](slide_r_elements_2.html)
* [Matrices, Lists and Dataframes (Slides)](slide_r_elements_3.html)
* [Working with Vectors (Lab)](lab_vectors.html)
* [Dataframes (Lab)](lab_dataframes.html)
* [Loops and functions (Slides)](slide_r_elements_4.html)
* [Loops and functions (Lab)](lab_loops.html)
**Data wrangling**
* [Loading data (Slides)](slide_loading_data.html)
* [Loading data (Lab)](lab_loadingdata.html)
* [Tidyverse (Slides)](slide_tidyverse.html)
* [Tidyverse (Lab)](lab_tidyverse.html)
**Graphics**
* [Graphics with base R (Slides)](slide_base_graphics.html)
* [Graphics with base R (Lab)](lab_graphics.html)
* [Graphics with ggplot2 (Slides)](slide_ggplot2.html)
* [Working with ggplot2 (Lab)](lab_ggplot2.html)
**Other**
* [R package anatomy (Slides)](slide_rpackage.html)
**Useful resources**
* [Data structures in R](data/common/R_data_structures_ver_1_1.pdf)
* [Color names in R](data/common/Rcolor.pdf)
* [Visualising data](data/common/rules_for_using_color.pdf)
* [Naming conventions in R](data/common/Rnaming.pdf)
* [Introduction to statistical tests in R](data/common/stats_tests.pdf)
***