wwsprague@ucdavis.edu
2004-May-03 23:10 UTC
[R] Getting parameters from within function (redux)
(Sorry about the wack name--don't want to go into your spam buckets...) Hi R-Helpers Is there a way to access the parameters passed to a function all at once? I want something like: misc.params = list(...) except such that it works with formal named parameters. Context--I am running lots of simulations, want to record how they were specified. Thanks!
On Mon, 3 May 2004 wwsprague at ucdavis.edu wrote:> Hi R-Helpers > > Is there a way to access the parameters passed to a function all at > once? I want something like: > > misc.params = list(...) > > except such that it works with formal named parameters. >match.call() or sys.call() -thomas