Re: [Rd] package has a loading problem

2008-07-10 Thread Yulia Arzhaeva
Hi, Yes I have this file already. Yulia On Thu, Jul 10, 2008 at 6:47 PM, Mathieu Ribatet <[EMAIL PROTECTED]> wrote: > Have you create a zzz.R file in the R folder? I think your issue is related > to this... > > Example of the zzz.R file: > > ".First.lib" <- > function(lib, pkg) > { > library.dy

Re: [Rd] package has a loading problem

2008-07-10 Thread Mathieu Ribatet
Have you create a zzz.R file in the R folder? I think your issue is related to this... Example of the zzz.R file: ".First.lib" <- function(lib, pkg) { library.dynam("your_pkd_name", package = pkg, lib.loc = lib) return(invisible(0)) } This is required when you have C/Fortran code. See the wr