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
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
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
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
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
, 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
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
on''.
I hope this can help you.
Guo-Hao
Huang
--
From: "Brock Tibert"
Sent: Friday, November 27, 2009 12:
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
9 matches
Mail list logo