Description
Utility Functions for Common Base-R Problems Relating to Lists.
Description
Utility functions that help with common base-R problems relating to lists. Lists in base-R are very flexible. This package provides functions to quickly and easily characterize types of lists. That is, to identify if all elements in a list are null, data.frames, lists, or fully named lists. Other functionality is provided for the handling of lists, such as the easy splitting of lists into equally sized groups, and the unnesting of data.frames within fully named lists.
README.md
splutil
Overview
splutil contains helpful functions to help with common base-R problems.
Read the introduction vignette here or run help(package="splutil")
.
splverse
The splverse is a set of R packages developed to help solve problems that frequently occur when performing infectious disease surveillance.
If you want to install the dev versions (or access packages that haven't been released on CRAN), run usethis::edit_r_profile()
to edit your .Rprofile
.
Then write in:
options(
repos = structure(c(
SPLVERSE = "https://docs.sykdomspulsen.no/drat/",
CRAN = "https://cran.rstudio.com"
))
)
Save the file and restart R.
You can now install splverse packages from our drat repository.
install.packages("splutil")