Re: [R] Package dependencies in building R packages

2013-12-31 Thread Philippe Grosjean
On 30 Dec 2013, at 20:01, Axel Urbiz axel.ur...@gmail.com wrote: Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS depends on survival and I have a function in my package named tt() which conflicts with a function in

Re: [R] Package dependencies in building R packages

2013-12-31 Thread Hadley Wickham
Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS depends on survival and I have a function in my package named tt() which conflicts with a function in survival of the same name. I can think of 2 alternatives solutions

Re: [R] Package dependencies in building R packages

2013-12-31 Thread Paul Gilbert
To: Duncan Murdochmurdoch.dun...@gmail.com Cc:R-help@r-project.org R-help@r-project.org Subject: Re: [R] Package dependencies in building R packages Message-ID: CAAyVsXKCN1Zn4gbG=QkD759kaDadPbgp+9e3W6nPvOLVwAsU=w...@mail.gmail.com Content-Type: text/plain Thanks for your kind response

[R] Package dependencies in building R packages

2013-12-30 Thread Axel Urbiz
Dear users, My package {foo} depends on a function miscFUN which is on package {foo_depend}. This last package also depends on other packages, say {A, B, C}, but miscFUN is not dependent on A, B, C (only on foo_depend). In my package {foo}, is there a way to only have it depend on the function

Re: [R] Package dependencies in building R packages

2013-12-30 Thread Duncan Murdoch
On 13-12-30 1:24 PM, Axel Urbiz wrote: Dear users, My package {foo} depends on a function miscFUN which is on package {foo_depend}. This last package also depends on other packages, say {A, B, C}, but miscFUN is not dependent on A, B, C (only on foo_depend). In my package {foo}, is there a way

Re: [R] Package dependencies in building R packages

2013-12-30 Thread Axel Urbiz
Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS depends on survival and I have a function in my package named tt() which conflicts with a function in survival of the same name. I can think of 2 alternatives solutions to my

Re: [R] Package dependencies in building R packages

2013-12-30 Thread Duncan Murdoch
On 13-12-30 2:01 PM, Axel Urbiz wrote: Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS depends on survival and I have a function in my package named tt() which conflicts with a function in survival of the same name. I