Quantcast

Previously saved workspace restored

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Previously saved workspace restored

Kristi Glover
hi there,
i an beginner of R. some one have sent me a file (extension is .Rdata).  i have  installed R in my computer and i just double clicked the data. then it automatically opened R programme and displayed that [previously saved workspace restored]. the following message was displayed.
 
Type 'demo()' for some demos, 'help()' for on-line help, or'help.start()' for an HTML browser interface to help.Type 'q()' to quit R.
 
[Previously saved workspace restored]
 
but how  can I see the data (table) which is saved (in R format) in R?,  
 
i hope you will help me.
 
Kristi Glover
 
 
 
 
_________________________________________________________________
Explore the seven wonders of the world

BRE
        [[alternative HTML version deleted]]

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Previously saved workspace restored

john seers (IFR)
 

Hi

If you enter the command "ls()"you will see a list of names that have
come with the .Rdata file you double-clicked.

If you enter one of these names at the command prompt you will see the
data.

So, for example if you have some data called "mydata":



> ls()
[1] "mydata" "repos"
> mydata
     [,1] [,2] [,3]
[1,]    1    4    7
[2,]    2    5    8
[3,]    3    6    9
>


Regards

John


 
---

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Kristi Glover
Sent: 11 July 2007 05:18
To: [hidden email]
Subject: [R] Previously saved workspace restored

hi there,
i an beginner of R. some one have sent me a file (extension is .Rdata).
i have  installed R in my computer and i just double clicked the data.
then it automatically opened R programme and displayed that [previously
saved workspace restored]. the following message was displayed.
 
Type 'demo()' for some demos, 'help()' for on-line help,
or'help.start()' for an HTML browser interface to help.Type 'q()' to
quit R.
 
[Previously saved workspace restored]
 
but how  can I see the data (table) which is saved (in R format) in R?,

 
i hope you will help me.
 
Kristi Glover
 
 
 
 
_________________________________________________________________
Explore the seven wonders of the world

BRE
        [[alternative HTML version deleted]]

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Previously saved workspace restored

Kristi Glover
In reply to this post by Kristi Glover
hi,
thanks for the suggestion, however i am struggling to see the data, here is > load("C://R//species.Rdata")> ls()[1] "abc"          "abc1"         "abc2"         "example"      "example1.14"  "generalis"    "last.warning"when i wrote ls(), then i saw the the files names I created before in R. there was no problem for the files  which was created in R. but still i could not see the data which was received from email. species data was downloaded from email.  i checked for .txt files. it worked but downloaded  .Rdata is not working using ls().  is any supporting files needed to open the downloaded files?   thanks for your suggestions  bye  Kristi



> Subject: RE: [R] Previously saved workspace restored> Date: Wed, 11 Jul 2007 13:19:06 +0100> From: [hidden email]> To: [hidden email]; [hidden email]> > > > Hi> > If you enter the command "ls()"you will see a list of names that have> come with the .Rdata file you double-clicked.> > If you enter one of these names at the command prompt you will see the> data.> > So, for example if you have some data called "mydata":> > > > > ls()> [1] "mydata" "repos" > > mydata> [,1] [,2] [,3]> [1,] 1 4 7> [2,] 2 5 8> [3,] 3 6 9> > > > > Regards> > John> > > > ---> > -----Original Message-----> From: [hidden email]> [mailto:[hidden email]] On Behalf Of Kristi Glover> Sent: 11 July 2007 05:18> To: [hidden email]> Subject: [R] Previously saved workspace restored> > hi there,> i an beginner of R. some one have sent me a file (extension is .Rdata).> i have installed R in my computer and i just double clicked the data.> !
 then it automatically opened R programme and displayed that [previously> saved workspace restored]. the following message was displayed. > > Type 'demo()' for some demos, 'help()' for on-line help,> or'help.start()' for an HTML browser interface to help.Type 'q()' to> quit R.> > [Previously saved workspace restored]> > but how can I see the data (table) which is saved (in R format) in R?,> > > i hope you will help me. > > Kristi Glover> > > > > _________________________________________________________________> Explore the seven wonders of the world> > BRE> [[alternative HTML version deleted]]> > ______________________________________________> [hidden email] mailing list> https://stat.ethz.ch/mailman/listinfo/r-help> PLEASE do read the posting guide> http://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.
_________________________________________________________________
Discover the new Windows Vista

        [[alternative HTML version deleted]]

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Loading...