Skip to content
Prev 201841 / 398506 Next

Learning R - View datasets

Brock Tibert wrote:
Hi Brock,

Take a look at the summary() function and the str() function. Also try 
and type the name of the dataset or use plot() on it.

data(cars)
summary(cars)
str(cars)
cars
plot(cars)

Have you read the Introduction to R [1]?

cheers,
Paul

[1] http://cran.r-project.org/doc/manuals/R-intro.pdf