Rev 89605 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/datasets/man/iris.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2025 R Core Team% Distributed under GPL 2 or later\name{iris}\docType{data}\alias{iris}\alias{iris3}\title{Edgar Anderson's Iris Data}\description{This famous (Fisher's or Anderson's) iris data set gives themeasurements in centimeters of the variables sepal length and widthand petal length and width, respectively, for 50 flowers from eachof 3 species of iris. The species are \emph{Iris \I{setosa}},\emph{\I{versicolor}}, and \emph{\I{virginica}}.}\usage{irisiris3}\format{\code{iris} is a data frame with 150 cases (rows) and 5 variables(columns) named \code{Sepal.Length}, \code{Sepal.Width},\code{Petal.Length}, \code{Petal.Width}, and \code{Species}.\code{iris3} gives the same data arranged as a 3-dimensional arrayof size 50 by 4 by 3, as once provided by S-PLUS. The first dimensiongives the case number within the species subsample, the second themeasurements with names \samp{Sepal L.}, \samp{Sepal W.},\samp{Petal L.}, and \samp{Petal W.}, and the third the species.}\source{\bibcitet{R:Fisher:1936}.The data were collected by \bibcitet{R:Anderson:1935}.}\references{\bibinfo{R:Becker+Chambers+Wilks:1988}{footer}{(Has \code{iris3} as \code{iris}.)}\bibshow{*,R:Becker+Chambers+Wilks:1988}}\seealso{\code{\link{matplot}} some examples of which use\code{iris}.}\examples{summary(iris)## Fisher's (1936) research question: whether (compound measurements of)## Iris versicolor "differs twice as much from I. setosa as from I. virginica"pairs(iris[1:4], col = iris$Species)legend(0.5, 1, levels(iris$Species), fill = 1:3, bty = "n",horiz = TRUE, xjust = 0.5, yjust = 0, xpd = TRUE)## equivalence of legacy array (iris3) and data.frame (iris) representationdni3 <- dimnames(iris3)ii <- data.frame(matrix(aperm(iris3, c(1,3,2)), ncol = 4,dimnames = list(NULL, sub(" L.",".Length",sub(" W.",".Width", dni3[[2]])))),Species = gl(3, 50, labels = sub("S", "s", sub("V", "v", dni3[[3]]))))stopifnot(all.equal(ii, iris))}\keyword{datasets}