Introduction

This notebook explores the dependencies used in the stlcsb package:

Dependencies

This notebook requires the following packages:

# tidyverse packages
library(dplyr)

# other packages
library(itdepends) # install from GitHub
library(knitr)

The package itdepends will need to be installed from GitHub:

remotes::install_github("jimhester/itdepends")

Count Dependencies

dep_usage_pkg("stlcsb") %>%
  count(pkg, sort = TRUE) %>% 
  kable()

Count Functions

dep_usage_pkg("stlcsb") %>%
  group_by(pkg) %>%
  count(fun, sort = TRUE) %>% 
  kable()


slu-openGIS/stlcsb documentation built on Jan. 28, 2024, 12:10 p.m.