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 March 13, 2026, 5:06 p.m.