new.variable.list {arvoRe}R Documentation

Usage

new.variable.list()

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--    or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function() {
        Variable <- array(" ",0)
        StdValue <- array(0,0)
        MinValue <- array(0,0)
        MaxValue <- array(0,0)
        Notes <- array(" ",0)
        
        ans <- data.frame("Name" = Variable, "Fix.Value" = StdValue, "Min.Value" = MinValue, 
                                                "Max.Value" = MaxValue, "Notes" = Notes)
        ans <- as.data.frame(ans)
        assign("variableMAT", ans, .EnvironmentArvoRe)
  }

[Package arvoRe version 0.1.7 Index]