Free Access Week-  Data Engineering + BI
Data engineering and BI courses are free!
Free AI Access Week from June 2-8

nlr (version 0.1-3)

evald: eval function.

Description

Implemented form of eval function with dots argument.

Usage

evald(expr, envir = parent.frame(), 
enclos = if (is.list(envir) || is.pairlist(envir)) parent.frame() else baseenv(), ...)

Arguments

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.

Value

The result of evaluating the object: for an expression vector this is the result of evaluating the last element.

Details

this function works exactly similar to eval except accept … argument, it is a compatibility adjustment to SPLUS.

References

Riazoshams H, Midi H, and Ghilagaber G, 2018,. Robust Nonlinear Regression, with Application using R, Joh Wiley and Sons.

See Also

eval, nl.form

Examples

Run this code
# NOT RUN {
## The function is currently defined as
"evald"
# }

Run the code above in your browser using DataLab