[R] what's the best way to save global variables?

2005-09-15 Thread johan Faux
I am writing a kind of long program in R and I have some variables which I want to be globals. Where should I save them? I was thinking to create a function wich initialize all the global variables and then whenever I need them, I call this function. What if I create a file glob.R with

Re: [R] what's the best way to save global variables?

2005-09-15 Thread Stephen D. Weigand
Johan, On Sep 15, 2005, at 11:39 AM, johan Faux wrote: I am writing a kind of long program in R and I have some variables which I want to be globals. Where should I save them? I was thinking to create a function wich initialize all the global variables and then whenever I need them, I