Re: [R] Save a function existing library

2008-10-30 Thread Douglas M. Hultstrand
Thanks everyone, Jorge I used your suggestion and this works perfect. Doug Jorge Ivan Velez wrote: Dear Douglas, I'm not quite sure about that, but you could do something like: 1. Save for function in txt format 2. Use source() to load it into R As a toy example, suppose you have function

Re: [R] Save a function existing library

2008-10-30 Thread Jorge Ivan Velez
Dear Douglas, I'm not quite sure about that, but you could do something like: 1. Save for function in txt format 2. Use source() to load it into R As a toy example, suppose you have function called "myfunction" which is defined as: myfunction=funciton(x,y) x^y Now, suppose you save "myfunction"

Re: [R] Save a function existing library

2008-10-30 Thread Christos Hatzis
e- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Douglas M. > Hultstrand > Sent: Thursday, October 30, 2008 1:45 PM > To: r-help@r-project.org > Subject: [R] Save a function existing library > > Hello all, > > I am fairly new to R and I

Re: [R] Save a function existing library

2008-10-30 Thread Xiaoxu LI
You can choose to save your function in the file ..\etc\Rprofile.site Xiaoxu On Fri, Oct 31, 2008 at 1:45 AM, Douglas M. Hultstrand <[EMAIL PROTECTED]> wrote: > Hello all, > > I am fairly new to R and I have created a function that I use quit > frequently. I was wondering if there is away to sav

[R] Save a function existing library

2008-10-30 Thread Douglas M. Hultstrand
Hello all, I am fairly new to R and I have created a function that I use quit frequently. I was wondering if there is away to save this function in an existing library so I can call it by using the function name once the library is loaded? Thanks, Doug -- -