Re: [R] Request Infomation

2009-10-13 Thread joris meys
The easy way out is to send the file containing only the function to the people willing to use it. They can load the function from the file "foo.R" using : source ("path/foo.R") The hard way out is to write a package. For that, see : http://cran.r-project.org/doc/manuals/R-exts.html Cheers Joris

Re: [R] Request Infomation

2009-10-13 Thread Duncan Murdoch
On 13/10/2009 4:07 PM, Andres Rincon wrote: Hello, I would like to know if is possible to load functions developed by users of R. I have been working in a function related to calculate some indicators to develop a credit scoring. I would like to know about the procedure to load this function

Re: [R] Request Infomation

2009-10-13 Thread stephen sefick
There is a "how to make R packages" in the document section of the cran website. On Tue, Oct 13, 2009 at 3:07 PM, Andres Rincon wrote: > Hello, I would like to know if is possible to load functions developed > by users of R. I have been working in a function related to calculate > some indicators

[R] Request Infomation

2009-10-13 Thread Andres Rincon
Hello, I would like to know if is possible to load functions developed by users of R. I have been working in a function related to calculate some indicators to develop a credit scoring. I would like to know about the procedure to load this function and create a package for this kind of subj