Site-wide usage

library(usedthese)

Having added used_here() to several of your Quarto website pages, you may want to make an overall site analysis of your package and function usage. used_there() scrapes and consolidates the tables into a tibble ready for analysis:


used_there("https://www.quantumjitter.com/project/")
#> # A tibble: 1,244 × 4
#>    Package Function         n url                                            
#>    <chr>   <chr>        <int> <chr>                                          
#>  1 base    as.character     1 https://www.quantumjitter.com/project/footnote/
#>  2 base    as.integer       1 https://www.quantumjitter.com/project/footnote/
#>  3 base    c                8 https://www.quantumjitter.com/project/footnote/
#>  4 base    is.na            1 https://www.quantumjitter.com/project/footnote/
#>  5 base    library          4 https://www.quantumjitter.com/project/footnote/
#>  6 base    list             5 https://www.quantumjitter.com/project/footnote/
#>  7 dplyr   arrange          1 https://www.quantumjitter.com/project/footnote/
#>  8 dplyr   desc             1 https://www.quantumjitter.com/project/footnote/
#>  9 dplyr   filter           1 https://www.quantumjitter.com/project/footnote/
#> 10 dplyr   if_else          1 https://www.quantumjitter.com/project/footnote/
#> # … with 1,234 more rows

Favourite Things shows an example analysis which takes the tibble output from used_there(), augments these data with a category, and plots the most-used packages, the most-used functions and a word cloud.