Re: [R] Learning R - View datasets

2009-11-27 Thread Mario Valle
. Guo-Hao Huang -- From: Brock Tibert btibe...@yahoo.com Sent: Friday, November 27, 2009 12:46 PM To: r-help@r-project.org Subject: [R] Learning R - View datasets Hi All, I am making a serious effort to try to learn R

Re: [R] Learning R - View datasets

2009-11-27 Thread guohao.huang
: Friday, November 27, 2009 4:00 PM To: guohao.hu...@gmail.com Cc: Brock Tibert btibe...@yahoo.com; r-help@r-project.org 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

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 btibe...@yahoo.com: 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

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 the

Re: [R] Learning R - View datasets

2009-11-27 Thread Liviu Andronic
Hello On Fri, Nov 27, 2009 at 4:46 AM, Brock Tibert btibe...@yahoo.com 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]

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,

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 btibe...@yahoo.com 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

[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

Re: [R] Learning R - View datasets

2009-11-26 Thread guohao.huang
: [R] Learning R - View datasets 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