R/source.R

Defines functions source_files

Documented in source_files

## normfluodbf - R package that Cleans and Normalizes FLUOstar DBF and DAT Files
## Copyright (C) 2024 Tingwei Adeck

#' Title: Source files
#' @param path path
#' @return All functions from the R file
#' @keywords internal
#' @examples \dontrun{source_files('R')}
source_files <- function(path) {
  files <- list.files(path, pattern = "\\.R$", full.names = TRUE, recursive = TRUE)
  sapply(files, source)
}

Try the normfluodbf package in your browser

Any scripts or data that you put into this service are public.

normfluodbf documentation built on Sept. 28, 2024, 1:06 a.m.