-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
59 lines (40 loc) · 3.19 KB
/
README.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# usedthese <a href="https://cgoo4.github.io/usedthese/"><img src="man/figures/logo.png" align="right" height="138"/></a>
<!-- badges: start -->
[![R-CMD-check](https://github.com/cgoo4/usedthese/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/cgoo4/usedthese/actions/workflows/R-CMD-check.yaml)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![Codecov test coverage](https://codecov.io/gh/cgoo4/usedthese/branch/main/graph/badge.svg)](https://app.codecov.io/gh/cgoo4/usedthese?branch=main)
[![CRAN status](https://www.r-pkg.org/badges/version/usedthese)](https://CRAN.R-project.org/package=usedthese)
[![](https://img.shields.io/badge/doi-10.32614/CRAN.package.usedthese-skyblue.svg)](https://doi.org/10.32614/CRAN.package.usedthese)
[![](https://cranlogs.r-pkg.org/badges/grand-total/usedthese?color=blue)](https://cran.r-project.org/package=usedthese)
<!-- badges: end -->
## Overview
usedthese is a pair of functions to summarise package & function usage in Quarto documents consistent with knitr's syntax highlighting:
1. `used_here()` adds a nicely-rendered summary table of usage to a single document;
2. `used_there()` harvests and consolidates the tables created above ready for site-wide analysis.
## Example Use Case
Each "little project" on the Quarto website [quantumjitter.com](https://www.quantumjitter.com/project/) focuses on a data science technique or machine learning model to analyse real-world data. At the foot of each of these is a quantified view of the R packages and functions used in the associated code. This is achieved by including `used_here()` in each Quarto document.
`used_there()` scrapes all the tables created by `used_here()` to enable a [Favourite Things](https://www.quantumjitter.com/project/box/) article on how packages and functions are used across the website.
I personally find this approach makes it easier for me to check for consistency of usage, acknowledge the packages I most need to keep abreast of (or go deeper on), and spot opportunities for updates to the latest and greatest.
When the Tidyverse blog announced changes to [dplyr](https://www.tidyverse.org/blog/2022/11/dplyr-1-1-0-is-coming-soon/) and [purrr](https://www.tidyverse.org/blog/2022/12/purrr-1-0-0/) a quick review of my [Favourite Things](https://www.quantumjitter.com/project/box/) identified a number of opportunities to try out the exciting new features. For example, dplyr introduced temporary grouping with the `.by` argument for mutate and amigos. `group_by()` and `ungroup()` had been used many times and most of these occurrences could be replaced with the new more concise approach.
## Installation
``` r
install.packages("usedthese")
```
## Development version
To get a bug fix, or to use a feature from the development version, you can install usedthese from GitHub.
``` r
# install.packages("pak")
pak::pak("cgoo4/usedthese")
```