R/rdata.reader.R

Defines functions rdata.reader

Documented in rdata.reader

#' @describeIn preinstalled.readers Read an RData file with a \code{.rdata} or \code{.rda} file extension.
#'
#' This function will load the specified RData file into memory using the
#' \code{\link{load}} function. This may generate many data sets
#' simultaneously.
rdata.reader <- function(data.file, filename, variable.name)
{
  load(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.