Iris | R Documentation |
The Iris dataset is a classic and widely-used dataset in the field of machine learning and statistics. It contains measurements of sepal length, sepal width, petal length, and petal width for three species of iris plants. The dataset is commonly used for classification tasks.
data(Iris)
A data frame with 150 rows and 5 columns representing different features of iris plants.
Sepal.Length
: Sepal length in centimeters (continuous).
Sepal.Width
: Sepal width in centimeters (continuous).
Petal.Length
: Petal length in centimeters (continuous).
Petal.Width
: Petal width in centimeters (continuous).
Species
: Species of iris plant (categorical): Iris Setosa, Iris Versicolor, or Iris Virginica.
# Load the dataset
data(Iris)
# Print the first few rows of the dataset
print(head(Iris))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.