-
Notifications
You must be signed in to change notification settings - Fork 24
/
00-workshop-contents.qmd
40 lines (23 loc) · 1.1 KB
/
00-workshop-contents.qmd
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
---
title: "Workshop Contents"
format: html
html-table-processing: none
---
This **gt** workshop will teach you 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 **Quarto** (.qmd) files with one file for each workshop module:
- `"01-create-table.qmd"`
- `"02-create-modify-parts.qmd"`
- `"02z-PRACTICE-01-02.qmd"`
- `"03-format-data.qmd"`
- `"04-modify-columns.qmd"`
- `"04z-PRACTICE-03-04.qmd"`
- `"05-summaries.qmd"`
- `"06-table_option_functions.qmd"`
- `"06z-PRACTICE-05-06.qmd"`
You can navigate to any of these and modify the code within the self-contained code chunks. Entire **Quarto** files can be rendered to HTML.
### Installing **gt**
You can install **gt** on your system by using `install.packages()`:
```{r eval=FALSE}
# install.packages("gt")
```