hi, all-

i wrote a function that accept multiple arguments, but don't know how to
assign names automatically. run the following code:

foo <- function (...) {
  x = list(...)
  names(x) <- deparse(substitute(...))
  x
}
a = 1; b = 2; c = 3
y <- foo( a, b, c)
names(y)

as you can see, only the first items are correctly named. 
how do i correct this problem?



-- 
View this message in context: 
http://www.nabble.com/getting-multiple-argument-names-tp18158010p18158010.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
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.

Reply via email to