https://github.com/rich-iannone/gt-workshop
A workshop for learning the gt package for R
https://github.com/rich-iannone/gt-workshop
gt learning-resources posit-cloud workshop-materials
Last synced: 5 months ago
JSON representation
A workshop for learning the gt package for R
- Host: GitHub
- URL: https://github.com/rich-iannone/gt-workshop
- Owner: rich-iannone
- License: cc-by-sa-4.0
- Created: 2020-10-07T17:46:24.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-10T15:20:20.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T00:53:32.302Z (over 1 year ago)
- Topics: gt, learning-resources, posit-cloud, workshop-materials
- Language: HTML
- Homepage: https://posit.cloud/project/1864185
- Size: 27.8 MB
- Stars: 75
- Watchers: 3
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## The **gt** Workshop
This **gt** workshop will teach you about what **gt** can do, and, it'll give you an opportunity to experiment with the package. It's available as a Posit Cloud project, and that makes it easy to get up and running.
https://posit.cloud/project/1864185
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"` (The *Create Table* Family of Functions)
- `"02-create-modify-parts.qmd"` (The *Create/Modify Parts* Family of Functions)
- `"02z-PRACTICE-01-02.qmd"` (Practice with functions from modules `01` and `02`)
- `"03-format-data.qmd"` (The *Format Data* Family of Functions)
- `"04-modify-columns.qmd"` (The *Modify Columns* Family of Functions)
- `"04z-PRACTICE-03-04.qmd"` (Practice with functions from modules `03` and `04`)
- `"05-summaries.qmd"` (The *Add Rows* Family of Functions)
- `"06-table_option_functions.qmd"` (The Family of *Table Option Functions*)
- `"06z-PRACTICE-05-06.qmd"` (Practice with functions from modules `05` and `06`)
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
install.packages("gt")
```
-----
 This work is
licensed under a [Creative Commons Attribution 4.0 International
License](https://creativecommons.org/licenses/by/4.0/).