On 12-03-24 5:04 PM, Ed Siefker wrote:
Is there a way I can get the names of the arguments passed to a function from within a function?
Use sys.call() to get the call, names(sys.call()) to get the names. It won't tell you how arguments were matched to formal names; for that you could use names(match.call()).
Duncan Murdoch ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.