mvpa2.datasets.sources.skl_linnerud

mvpa2.datasets.sources.skl_linnerud(return_X_y=False)

Load and return the linnerud dataset (multivariate regression).

Samples total 20
Dimensionality 3 (for both data and target)
Features integer
Targets integer
Parameters:

return_X_y : boolean, default=False.

If True, returns (data, target) instead of a Bunch object. See below for more information about the data and target object.

New in version 0.18.

Returns:

data : Bunch

Dictionary-like object, the interesting attributes are: ‘data’ and ‘targets’, the two multivariate datasets, with ‘data’ corresponding to the exercise and ‘targets’ corresponding to the physiological measurements, as well as ‘feature_names’ and ‘target_names’.

(data, target) : tuple if return_X_y is True

New in version 0.18.

Notes

This function has been auto-generated by wrapping load_linnerud() from the sklearn package. The documentation of this function has been kept verbatim. Consequently, the actual return value is not as described in the documentation, but the data is returned as a PyMVPA dataset.