Difference between revisions of "R: data"

From OnnoWiki
Jump to navigation Jump to search
Line 29: Line 29:
 
  data("USArrests")
 
  data("USArrests")
 
  head(USArrests)
 
  head(USArrests)
 +
 +
 +
==Basic R Functions==
 +
 +
data(mtcars)
 +
summary(mtcars)
 +
quantile(mycars$cyl,seq(0,1,.1)) # here seq gives

Revision as of 10:18, 28 November 2019

data()
# Loading
data(mtcars)
# Print the first 6 rows
head(mtcars, 6)
# 1. Loading 
data("mtcars")
# 2. Print
head(mtcars)
summary(mtcars)
# Number of rows (observations)
nrow(mtcars)
# Number of columns (variables)
ncol(mtcars)


data("iris")
head(iris)
data("ToothGrowth")
head(ToothGrowth)
data("PlantGrowth")
head(PlantGrowth)
data("USArrests")
head(USArrests)


Basic R Functions

data(mtcars)
summary(mtcars)
quantile(mycars$cyl,seq(0,1,.1)) # here seq gives