Install the up-to-date version of this package using remotes::install_github("whocov/whotools").
- We use
roxygen2for documentation and dependency handling:- For imports used in a single function, include
#' @importFrom pkg funcin the documentation section above that function. - For imports used more generally, use
usethis::use_import_from("pkg", "func"), which will update the general documentation filewhotools-package.R. - Use the
#' @exportflag for functions that should be available to package users.
- For imports used in a single function, include