On Sat, Mar 11, 2017 at 2:11 PM, Mohammad Tanvir Ahamed via R-help <r-help@r-project.org> wrote: > Thanks for reply. > as I said , the function in the package is like > myplot <- function(x,y) { plot(x,y) } > > not like > myplot <- function(x,y) { plot(x,y,...) } > > And I cant change the function inside the package!!
The easiest solution __is__ to change the function inside the package. If the license of the package allows it and your coding skills are up to it, download the source of the package, make the necessary modification in the code, and use that. If you make the modifications so that they are useful for others, you could email the package maintainer with your code and suggest that he/she incorporates it in the package for wider release. Peter ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 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.