-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.Rmd
More file actions
68 lines (55 loc) · 1.66 KB
/
Index.Rmd
File metadata and controls
68 lines (55 loc) · 1.66 KB
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
---
title: "Introduction to R, from wrangling to visualization"
bibliography: packages.bib
output:
learnr::tutorial:
allow_skip: true
runtime: shiny_prerendered
---
<!-- Warning: there must always be a new line before a code chunk and end of file -->
<!-- If not learnr puts odd columns across the html file -->
<!-- Also, we can have either `solutions` or `hints`, not both -->
{width=2in}
{width=2in}
{width=2in}
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
# library(datasauRus) # for animation
# library(gganimate) # for animation
library(ggplot2)
# library(gifski) # for animation
library(learnr)
tutorial_options(exercise.timelimit = 200)
library(purrr)
library(readr)
library(rmarkdown)
library(tidyverse)
library(dplyr)
library(magrittr)
# load the data
participants_data <- read.csv("participants_data.csv")
```
```{r, warning=FALSE, include = FALSE}
#Automatically write R package citation entries to a .bib file
knitr::write_bib(c(.packages(),
# 'datasauRus',
#'gganimate',
'ggplot2',
'learnr',
'purrr',
'readr',
'rmarkdown',
'tidyverse'), 'packages.bib')
```
<!-- List of Lecture RMD files to be compiled -->
```{r child_Intro, child="Introduction.Rmd"}
```
```{r child_Wrangle1, child="Data_Wrangling_1.Rmd"}
```
```{r child_Wrangle2, child="Data_Wrangling_2.Rmd"}
```
```{r child_Vis, child="Data_Visualization.Rmd"}
```
<!-- ```{r child_Vis, child="Data_Animation.Rmd"} -->
<!-- ``` -->
## References