-
Notifications
You must be signed in to change notification settings - Fork 0
/
00-workshop-contents.Rmd
44 lines (23 loc) · 2.07 KB
/
00-workshop-contents.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
# Workshop Contents
This **gt** workshop will teach you *a lot* about what **gt** can do, and, it'll give you an opportunity to experiment with the package.
The goal of the workshop is to introduce you to a lot of examples and provide some time to generate some sample tables, learning bit-by-bit as we go.
Each module of the workshop focuses on a different family of functions, with relevant examples and exercises in each. They are all presented here as **R Markdown** (.Rmd) files with one file for each workshop module:
- [`"01-create-table.Rmd"`](https://rpubs.com/esimms/gt_01_es) (The *Create Table* Family of Functions)
- [`"02-create-modify-parts.Rmd"`](https://rpubs.com/esimms/gt_02_es) (The *Create/Modify Parts* Family of Functions)
- [`"02z-PRACTICE-01-02.Rmd"`](https://rpubs.com/esimms/gt_02z_es) (Practice with examples from modules `01` and `02`)
- [`"03-format-data.Rmd"`](https://rpubs.com/esimms/gt_03_es) (The *Format Data* Family of Functions)
- [`"04-modify-columns.Rmd"`](https://rpubs.com/esimms/gt_04_es) (The *Modify Columns* Family of Functions)
- [`"04z-PRACTICE-03-04.Rmd"`](https://rpubs.com/esimms/gt_04z_es) (Practice with examples from modules `03` and `04`)
- [`"05-summaries.Rmd"`](https://rpubs.com/esimms/gt_05_es) (The *Add Rows* Family of Functions)
- [`"06-table_option_functions.Rmd"`](https://rpubs.com/esimms/gt_06_es) (The Family of *Table Option Functions*)
- [`"06z-PRACTICE-05-06.Rmd"`](https://rpubs.com/esimms/gt_06z_es) (Practice with examples from modules `05` and `06`)
You can navigate to any of these and modify the code within the self-contained **R Markdown** code chunks. Entire **R Markdown** files can be knit to HTML, where a separate window will show the rendered document.
**The `gt` Installation**
Normally you would install **gt** on your system by using `install.packages()`:
```{r eval=FALSE}
# install.packages("gt")
```
For this workshop, however, we are going to use the development version of **gt** and install it from GitHub with `devtools::install_github()`.
```{r eval=FALSE}
# devtools::install_github("rstudio/gt")
```