R/load.Rdata.R

Defines functions load.Rdata

Documented in load.Rdata

## File Name: load.Rdata.R
## File Version: 1.05

#****************************************
# load R data objects globally
load.Rdata <- function( filename, objname )
{
    d1 <- load( filename )
    eval( parse( text=paste( objname,  "<<- ", d1  ) ) )
}

Try the miceadds package in your browser

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

miceadds documentation built on Jan. 7, 2023, 1:09 a.m.