在R語言中,可以使用以下方法對iris數據集進行分析:
data(iris)
str(iris)
summary(iris)
# 散點圖
plot(iris$Sepal.Length, iris$Sepal.Width, col=iris$Species, pch=19, xlab="Sepal Length", ylab="Sepal Width")
# 箱線圖
boxplot(iris$Sepal.Length~iris$Species, main="Sepal Length by Species")
# 直方圖
hist(iris$Sepal.Length, main="Sepal Length Distribution", xlab="Sepal Length")
aggregate(iris[, 3:4], by=list(iris$Species), FUN=mean)
以上是對iris數據集進行分析的基本方法,在實際分析中可以根據需要進一步探索和分析數據。