Datasets:
Tasks:
Tabular Regression
Modalities:
Tabular
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -47,4 +47,29 @@ language:
|
|
47 |
- en
|
48 |
size_categories:
|
49 |
- 10K<n<100K
|
50 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
- en
|
48 |
size_categories:
|
49 |
- 10K<n<100K
|
50 |
+
---
|
51 |
+
|
52 |
+
#california_housing
|
53 |
+
|
54 |
+
## About
|
55 |
+
🏠 The California Housing dataset, first appearing in "Sparse spatial autoregressions" (1997)
|
56 |
+
|
57 |
+
## Description
|
58 |
+
This is an (unofficial) Hugging Face version of the California Housing dataset from the S&P Letters paper "Sparse spatial autoregressions" (1997). It can also be found in [StatLib](https://lib.stat.cmu.edu/datasets/) and [Luis Torgo's page](https://www.dcc.fc.up.pt/~ltorgo/Regression/cal_housing.html). A modified version of it, used in "Hands-On Machine learning with Scikit-Learn and TensorFlow", with 9 differenfeatures and missing values, also circulates online.
|
59 |
+
|
60 |
+
The California Housing dataset comes from the California 1990 Census. It contains 20640 samples, each of which corresponds to a geographical block and the people living therein. Specifically, it contains the following 8 features:
|
61 |
+
1) MedInc: Median income of the people living in the block
|
62 |
+
2) HouseAge: Median age of the houses in a block
|
63 |
+
3) AveRooms: Average rooms of houses in a block
|
64 |
+
4) AveBedrms: Average bedrooms of houses in a block
|
65 |
+
5) Population: Number of people living in a block
|
66 |
+
6) AveOccup: Average number of people under the same roof
|
67 |
+
7) Latitude: Geographical latitude
|
68 |
+
8) Longitude: Geographical longitude
|
69 |
+
|
70 |
+
The target variable is the median house value (MedHouseVal).
|
71 |
+
|
72 |
+
## Usage
|
73 |
+
import datasets
|
74 |
+
|
75 |
+
dataset = datasets.load_dataset("gvlassis/california_housing")
|