Dear R users,

I want to retrieve "..." argument values within a function. Here is a small
exmaple:

myfunc <- function(x, ...)
{
      if (hasArg(ylim))  a <- ylim
      plot(x, ...)
}

x <- rnorm(100)
myfunc(x, ylim=c(-0.5, 0.5))
Error in myfunc(x, ylim = c(-0.5, 0.5)) : Object "ylim" not found
>

I need to retrieve values of "ylim" (if it is defined when function is called) for 
later use in the function. Can anybody give me some hint?

Thanks a lot.

Huan




This message and any attachments (the "message") is\ intende...{{dropped}}

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to