在R語言中,可以使用以下方法對iris數(shù)據(jù)集進(jìn)行分析:
data(iris)
str(iris)
summary(iris)
# 散點(diǎn)圖
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數(shù)據(jù)集進(jìn)行分析的基本方法,在實(shí)際分析中可以根據(jù)需要進(jìn)一步探索和分析數(shù)據(jù)。