eval
function.Implemented form of eval
function with dots argument.
evald(expr, envir = parent.frame(),
enclos = if (is.list(envir) || is.pairlist(envir)) parent.frame() else baseenv(), ...)
an object to be evaluated.
the environment in which expr is to be evaluated. May also be NULL, a list, a data frame, a pairlist or an integer as specified to sys.call.
Relevant when envir is a (pair)list or a data frame. Specifies the enclosure, i.e., where R looks for objects not found in envir. This can be NULL (interpreted as the base package environment, baseenv()) or an environment.
other arguments pass to expr.
The result of evaluating the object: for an expression vector this is the result of evaluating the last element.
this function works exactly similar to eval
except accept … argument, it is a compatibility adjustment to SPLUS.
Riazoshams H, Midi H, and Ghilagaber G, 2018,. Robust Nonlinear Regression, with Application using R, Joh Wiley and Sons.
# NOT RUN {
## The function is currently defined as
"evald"
# }
Run the code above in your browser using DataLab