Re: [Rd] How to create a permanent dataset in R.

2009-07-27 Thread Alex D'Amour
Please see http://cran.r-project.org/doc/manuals/R-exts.html. On Mon, Jul 27, 2009 at 1:50 AM, Albert EINstEIN wrote: > > Hi, >         Thanks for your valuable reply. > can you provide me some more information regarding . Here we are reloading > the data when we start the R, In R there are some d

Re: [Rd] How to create a permanent dataset in R.

2009-07-26 Thread Albert EINstEIN
Hi, Thanks for your valuable reply. can you provide me some more information regarding . Here we are reloading the data when we start the R, In R there are some default packages with datasets can we create a dataset permanently in any packages so that we can get the dataset without reload

Re: [Rd] How to create a permanent dataset in R.

2009-07-25 Thread Alex D'Amour
Say your dataset is stored in variable "dat". Type: > save(dat, file="mydatfile.RData") Next time you start the session, call: load("mydatfile.RData") And you can reload your dataset. Is this what you meant? HTH, Alex On Fri, Jul 24, 2009 at 2:11 AM, Albert EINstEIN wrote: > > > Hi everybod

Re: [Rd] How to create a permanent dataset in R.

2009-07-24 Thread Jeff Ryan
The biggest help would come by not pretending to be Albert Einstein. hTh, Jeff On Fri, Jul 24, 2009 at 1:11 AM, Albert EINstEIN wrote: > > > Hi everybody, > > Actually, we know that If we create a dataset in R ,after closing the > session the dataset automatically is closed. I tried for creating