Re: [R] How to list R object properties save workspace?

2009-07-23 Thread gug
to save workspace to a custom location while running R? Is there any command for that? Thanks, Matej -- View this message in context: http://www.nabble.com/How-to-list-R-object-properties---save-workspace--tp24604549p24624120.html Sent from the R help mailing list archive at Nabble.com

[R] How to list R object properties save workspace?

2009-07-22 Thread Matej Kovacic
Hi, I am new to R and have a couple of questions. I know how to list all objects (with ls()), but how to list all properties of them? For instance, I found function object.size(), but I would also like to know whether one object is a dataset or just one vector (variable) or even only one value,

Re: [R] How to list R object properties save workspace?

2009-07-22 Thread Liviu Andronic
Hello, On Wed, Jul 22, 2009 at 1:22 PM, Matej Kovacicmatej.kova...@owca.info wrote: I know how to list all objects (with ls()), but how to list all properties of them? For instance, I found function object.size(), but I would also like to know whether one object is a dataset or just one

Re: [R] How to list R object properties save workspace?

2009-07-22 Thread Duncan Murdoch
On 22/07/2009 7:22 AM, Matej Kovacic wrote: Hi, I am new to R and have a couple of questions. I know how to list all objects (with ls()), but how to list all properties of them? ls.str() gives more info than ls(). str() on a particular one gives more detail. For instance, I found