R經常使用操做

##檢查數據的維度
dim(iris)

##顯示數據集的內部結構
str(iris)

##顯示數據集的屬性
attributes(iris)

##顯示數據集中每一個變量的分佈狀況
summary(iris)

##顯示iris數據集列Species中各個值出現頻次
table(iris$Species)

##根據列Species畫出餅圖
pie(table(iris$Species))

##畫出列iris$Sepal.Length分佈柱狀圖
hist(iris$Petal.Length)

##畫出列iris$Sepal.Length的密度函數圖
plot(density(iris$Petal.Length))

##畫出列iris$Sepal.Length和iris$Sepal.Width的散點圖
plot(iris$Sepal.Length,iris$Sepal.Width)

##繪出矩陣各列的散佈圖
plot(iris)
pairs(iris)
相關文章
相關標籤/搜索