[R] passing on the ... arguments in a progammed graphics function
Mark Heckmann
mark.heckmann at gmx.de
Thu Dec 11 17:01:42 CET 2008
Hi everyone,
I want to write a wrapper function that uses the hist() function. Now I want
to allow the hist breaks argument as optional in my function. So when my
function contains the breaks argument I want the hist() function to use it,
if not, I want the hist() function to use its default for breaks.
How can I do that?
myFunction <- function(data, ...) # breaks= as optional here
{
hist(data, breaks=???)
}
TIA
Mark
More information about the R-help
mailing list