Re: [R] Package dependencies in building R packages

2013-12-31 Thread Paul Gilbert
Duncan Murdoch Cc:"R-help@r-project.org" Subject: Re: [R] Package dependencies in building R packages Message-ID: Content-Type: text/plain Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS de

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 solution

Re: [R] Package dependencies in building R packages

2013-12-31 Thread Philippe Grosjean
On 30 Dec 2013, at 20:01, 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 sa

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 can

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 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 wa

[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