R/Reval.R

Defines functions Reval

Documented in Reval

## File Name: Reval.R
## File Version: 1.09


# evaluates an R function
Reval <- function( Rstring, print.string=TRUE, n.eval.parent=1)
{
    if (print.string){
        cat( paste( "R>", Rstring ), "\n"  )
    }
    eval.parent( parse( text=paste( Rstring )), n=n.eval.parent )
}

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.