Description Usage Arguments Details Value Note Author(s) References See Also Examples
Implemented form of eval
function with dots argument.
1 2 | evald(expr, envir = parent.frame(),
enclos = if (is.list(envir) || is.pairlist(envir)) parent.frame() else baseenv(), ...)
|
expr |
an object to be evaluated. |
envir |
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. |
enclos |
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. |
this function works exactly similar to eval
except accept ... argument, it is a compatibility adjustment to SPLUS.
The result of evaluating the object: for an expression vector this is the result of evaluating the last element.
This is a specialisd for nlr
package to imitate eval
function for special uses, is not intended to be used by user.
Hossein Riazoshams, Apr 2014. Email: riazihosein@gmail.com URL http://www.riazoshams.com/nlr/
Riazoshams H, Midi H, and Ghilagaber G, 2018,. Robust Nonlinear Regression, with Application using R, Joh Wiley and Sons.
1 2 | ## The function is currently defined as
"evald"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.