Load and return the physical exercise Linnerud dataset.
This dataset is suitable for multi-output regression tasks.
Samples total | 20 |
Dimensionality | 3 (for both data and target) |
Features | integer |
Targets | integer |
Read more in the User Guide.
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, string or categorical). 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 regression targets. If as_frame=True, target will be a pandas DataFrame.
The names of the dataset columns.
The names of the target columns.
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.
The path to the location of the target.
Added in version 0.20.
return_X_y is True
Returns a tuple of two ndarrays or dataframe of shape (20, 3). Each row represents one sample and each column represents the features in X and a target in y of a given sample.
Added in version 0.18.
>>> from sklearn.datasets import load_linnerud >>> linnerud = load_linnerud() >>> linnerud.data.shape (20, 3) >>> linnerud.target.shape (20, 3)
© 2007–2025 The scikit-learn developers
Licensed under the 3-clause BSD License.
https://scikit-learn.org/1.6/modules/generated/sklearn.datasets.load_linnerud.html