R/rds.reader.R

Defines functions rds.reader

Documented in rds.reader

#' @describeIn preinstalled.readers Read the RDS file format from files with the \code{.rds} extension.
rds.reader <- function(data.file, filename, variable.name) {
  assign(variable.name,
         readRDS(filename),
         envir = .TargetEnv)
}

Try the ProjectTemplate package in your browser

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

ProjectTemplate documentation built on Nov. 20, 2023, 1:06 a.m.