Re: [R] Learning R - View datasets

2009-11-27 Thread ojal john owino
Hi Brock, Have you tried View() ? Regards. On Fri, Nov 27, 2009 at 7:46 AM, Brock Tibert wrote: > Hi All, > > I am making a serious effort to try to learn R, but one hurdle I am facing > is that I need to "see" the data as I walk through the examples in the > packages. For instance, many exam

Re: [R] Learning R - View datasets

2009-11-27 Thread Gabor Grothendieck
Try this: # each of these three show entire data set wines dput(wines) View(wines) # get help ?wines # various info on data set head(wines) tail(wines) summary(wines) str(wines) class(wines) dim(wines) # plotting plot(wines) # for a better plot see the example at the bottom of ?wines On Thu, N

Re: [R] Learning R - View datasets

2009-11-27 Thread Liviu Andronic
Hello On Fri, Nov 27, 2009 at 4:46 AM, Brock Tibert wrote: > In short, I know that data() lists all of the available datasets, > data("wines") will load the dataset wines, but how can I look at the raw data? > See this [1]. [1] http://www.mail-archive.com/r-help@r-project.org/msg66111.html Livi

Re: [R] Learning R - View datasets

2009-11-27 Thread Paul Hiemstra
Brock Tibert wrote: Hi All, I am making a serious effort to try to learn R, but one hurdle I am facing is that I need to "see" the data as I walk through the examples in the packages. For instance, many examples on the web start by a command like data("wines"). How can I actually view what

Re: [R] Learning R - View datasets

2009-11-27 Thread Wincent
There are different ways to inspect the conent of a data frame. For example, >View(CO2) 2009/11/27 Brock Tibert : > Hi All, > > I am making a serious effort to try to learn R, but one hurdle I am facing is > that I need to "see" the data as I walk through the examples in the packages. >  For i

Re: [R] Learning R - View datasets

2009-11-27 Thread guohao.huang
, November 27, 2009 4:00 PM To: Cc: "Brock Tibert" ; Subject: Re: [R] Learning R - View datasets guohao.hu...@gmail.com wrote: > Please check the following pdf file. > http://tw.nextmedia.com/applenews/article/art_id/32119622/IssueID/20091127 > Besides a beautiful blond gir

Re: [R] Learning R - View datasets

2009-11-27 Thread Mario Valle
vector > > If you do not know how to get these value, you can read ``R introduction''. > I hope this can help you. > > > Guo-Hao > Huang > > > > -- > Fro

Re: [R] Learning R - View datasets

2009-11-26 Thread guohao.huang
on''. I hope this can help you. Guo-Hao Huang -- From: "Brock Tibert" Sent: Friday, November 27, 2009 12:

[R] Learning R - View datasets

2009-11-26 Thread Brock Tibert
Hi All, I am making a serious effort to try to learn R, but one hurdle I am facing is that I need to "see" the data as I walk through the examples in the packages. For instance, many examples on the web start by a command like data("wines"). How can I actually view what the dataset looks like