Displaying 1 result from an estimated 1 matches for "funnnam".
Did you mean:
funnam
2002 Dec 17
3
Changing "..." inside a function: impossible? desirable?
...t( list(...)["myarg" != naml] )
}
BTW: one relatively ugly workaround is to use the above *list*
say nlist <- list(...)["myarg" != naml]
and do all subsequent call where I'd had "..." as
do.call( <funname> , c(list( <<other args to funnname>> ), nlist))
but this really obfuscates the code horrendously.
PS:
I know that using a pars = list(.) argument instead of "..."
is another alternative (that we have been using) as well,
but lets assume this can't be done, because of compatibility reasons.
Martin...