This page

Citing

Please consider citing the scikit-learn.

sklearn.datasets.load_boston

sklearn.datasets.load_boston()

Load and return the boston house-prices dataset (regression).

Examples

>>> from sklearn.datasets import load_boston
>>> boston = load_boston()
>>> boston.data.shape
(506, 13)