Load and return the iris dataset (classification).
The iris dataset is a classic and very easy multi-class classification dataset.
Classes | 3 |
Samples per class | 50 |
Samples total | 150 |
Dimensionality | 4 |
Features | real, positive |
Read more in the User Guide.
Changed in version 0.20: Fixed two wrong data points according to Fisher’s paper. The new version is the same as in R, but not as in the UCI Machine Learning Repository.
If True, returns (data, target) instead of a Bunch object. See below for more information about the data and target object.
Added in version 0.18.
If True, the data is a pandas DataFrame including columns with appropriate dtypes (numeric). The target is a pandas DataFrame or Series depending on the number of target columns. If return_X_y is True, then (data, target) will be pandas DataFrames or Series as described below.
Added in version 0.23.
Bunch
Dictionary-like object, with the following attributes.
The data matrix. If as_frame=True, data will be a pandas DataFrame.
The classification target. If as_frame=True, target will be a pandas Series.
The names of the dataset columns.
The names of target classes.
Only present when as_frame=True. DataFrame with data and target.
Added in version 0.23.
The full description of the dataset.
The path to the location of the data.
Added in version 0.20.
return_X_y is True
A tuple of two ndarray. The first containing a 2D array of shape (n_samples, n_features) with each row representing one sample and each column representing the features. The second ndarray of shape (n_samples,) containing the target samples.
Added in version 0.18.
Let’s say you are interested in the samples 10, 25, and 50, and want to know their class name.
>>> from sklearn.datasets import load_iris
>>> data = load_iris()
>>> data.target[[10, 25, 50]]
array([0, 0, 1])
>>> list(data.target_names)
[np.str_('setosa'), np.str_('versicolor'), np.str_('virginica')]
See Principal Component Analysis (PCA) on Iris Dataset for a more detailed example of how to work with the iris dataset.
© 2007–2025 The scikit-learn developers
Licensed under the 3-clause BSD License.
https://scikit-learn.org/1.6/modules/generated/sklearn.datasets.load_iris.html