-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathslides.Rmd
88 lines (58 loc) · 1.96 KB
/
slides.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: "In-Class Slides & Reading for CS631 Labs"
output: html_document
---
```{r setup, include = FALSE, cache = FALSE}
knitr::opts_chunk$set(error = TRUE, comment = NA, warnings = FALSE, errors = FALSE, messages = FALSE, tidy = FALSE, echo = FALSE)
```
The following are all *free* books, available to read online:
- Modern Dive: http://moderndive.com
- R for Data Science: http://r4ds.had.co.nz
- Fundamentals of Data Visualization: http://serialmentor.com/dataviz/
- Data Visualization: A Practical Introduction: http://socviz.co
## Slide Decks & Reading {.tabset}
### 01: Working in R
```{r}
knitr::include_url("slides/01-slides.html")
```
- R for Data Science, Workflow: Basics Chapter: http://r4ds.had.co.nz/workflow-basics.html
- Modern Dive, Getting Started Chapter: http://moderndive.com/2-getting-started.html
- R & RStudio Basics: https://bookdown.org/chesterismay/rbasics/3-rstudiobasics.html
- RStudio IDE Cheatsheet: https://github.com/rstudio/cheatsheets/blob/master/rstudio-ide.pdf
### 02: Working in the Tidyverse
```{r}
knitr::include_url("slides/02-slides.html")
```
- R for Data Science, Data Visualization Chapter: http://r4ds.had.co.nz/data-visualisation.html
- Modern Dive, Data Visualization Chapter: http://moderndive.com/3-viz.html
- RStudio `ggplot2` Cheatsheet: https://github.com/rstudio/cheatsheets/blob/master/data-visualization-2.1.pdf
### 03: Working with Data
```{r}
knitr::include_url("slides/03-slides.html")
```
### 04: Working with Tidy Data
```{r}
knitr::include_url("slides/04-slides.html")
```
### 06: Slides
```{r}
knitr::include_url("slides/06-slides_xaringan.html")
```
### 06+07: Blogdown
```{r}
knitr::include_url("slides/06-slides_blogdown.html")
```
```{r}
knitr::include_url("slides/07-prework-slides_blogdown.html")
```
```{r}
knitr::include_url("slides/07-slides_blogdown.html")
```
### 11: 11 ways
```{r}
knitr::include_url("slides/11-slides.html")
```
### 12: Wrap-up
```{r}
knitr::include_url("slides/12-slides.html")
```