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

2009-07-27 Thread Petr PIKAL
Hi I use saved R file stand.R which looks like this stand - list( b110 = c(49.45000, 21.46, 11.468333, 24.33500, 28.112240), b120 = c(49.77333, 19.386667, 7.736667, 20.87500, 21.753788), b130 = c(49.60833, 18.365000, 5.708333, 19.23167, 17.265409), b140 =

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

2009-07-27 Thread Liviu Andronic
On 7/27/09, Albert EINstEIN sateeshvar...@gmail.com wrote: can we create our own packages in R. It would be very helpful for us, if you provide any information regarding this. Yes. See this [1]. Liviu [1] http://cran.r-project.org/doc/manuals/R-exts.pdf

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

2009-07-27 Thread Albert EINstEIN
Hi, Thank you very much all of you for giving me valuable solution -- View this message in context: http://www.nabble.com/Re%3A--Rd--How-to-create-a-permanent-dataset-in-R.-tp24649306p24677150.html Sent from the R help mailing list archive at Nabble.com

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

2009-07-27 Thread Albert EINstEIN
Thank you very much for your reply. Yes. See this [1]. Liviu [1] http://cran.r-project.org/doc/manuals/R-exts.pdf -- View this message in context: http://www.nabble.com/Re%3A--Rd--How-to-create-a-permanent-dataset-in-R.-tp24649306p24678083.html Sent from the R help mailing list archive

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

2009-07-24 Thread Liviu Andronic
(redirecting to r-help; it seems more appropriate for such a question) Hello, On Fri, Jul 24, 2009 at 8:11 AM, Albert EINstEINsateeshvar...@gmail.com wrote: Actually, we know that If we create a dataset in R ,after closing the session the dataset automatically is closed. I tried for creating

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

2009-07-24 Thread Ben Bolker
--Rd--How-to-create-a-permanent-dataset-in-R.-tp24649306p24651573.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R

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

2009-07-24 Thread S Ellison
Liviu Andronic landronim...@gmail.com 07/24/09 7:06 PM .. use save.image() to save R's workspace and re-load it when re-opening R via load(). Or you could just use save.image in your default directory for R and R will then open it automatically. I'd use that sparingly though; it is not always