Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rich-iannone/pointblank-workshop
A workshop to learn lots about the pointblank R package
https://github.com/rich-iannone/pointblank-workshop
Last synced: 28 days ago
JSON representation
A workshop to learn lots about the pointblank R package
- Host: GitHub
- URL: https://github.com/rich-iannone/pointblank-workshop
- Owner: rich-iannone
- License: cc0-1.0
- Created: 2022-10-12T03:18:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-17T16:22:53.000Z (about 1 year ago)
- Last Synced: 2024-10-11T21:12:45.866Z (2 months ago)
- Language: HTML
- Homepage: https://rstudio.cloud/content/4726872
- Size: 17.1 MB
- Stars: 33
- Watchers: 3
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - rich-iannone/pointblank-workshop - A workshop to learn lots about the pointblank R package (HTML)
README
## The **pointblank** Workshop
This **pointblank** workshop will teach you *a lot* about what **pointblank** can do, and, it'll give you an opportunity to experiment with the package. All materials are also available as a Posit Cloud project, making it easy to get up and running.
https://posit.cloud/content/4726872
The goal of the workshop is to introduce you to a lot of examples and provide some time to use the functions of **pointblank** with some sample datasets, learning bit-by-bit as we go.
Each module of the workshop focuses on a different subset of functions and they are all presented here as **R Markdown** (.Rmd) files, with one file for each workshop module:
- `"01-intro-to-data-validation.Rmd"` (The `agent`, validation fns, interrogation/reports)
- `"02-scan-your-data.Rmd"` (Looking at your data with `scan_data()`)
- `"03-expect-test-functions.Rmd"` (Using the `expect_*()` and `test_*()` functions)
- `"04-scaling-up-data-validation.Rmd"` (The `multiagent` and its reporting structures)
- `"05-intro-to-data-documentation.Rmd"` (The `informant` and describing your data)
- `"06-getting-deeper-into-documenting-data.Rmd"` (Using snippets and text tricks)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.
### Installation
Installation of **pointblank** on your system is done by using `install.packages()`:
```{r eval=FALSE}
# install.packages("pointblank")
```You can optionally use the development version of **pointblank**, installing it from GitHub with `devtools::install_github()`.
```{r eval=FALSE}
# devtools::install_github("rich-iannone/pointblank")
```