misikoff commited on
Commit
45444a4
1 Parent(s): d1bd12c

fix: update readme and config descriptions

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. zillow.py +7 -7
README.md CHANGED
@@ -10,7 +10,7 @@ description: "This dataset is comprised of seven different configurations of dat
10
  homepage: "https://www.zillow.com/research/data/"
11
  ---
12
 
13
- # Housing Data Provided by Zillow
14
  Updated 2023-02-01
15
 
16
  This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
 
10
  homepage: "https://www.zillow.com/research/data/"
11
  ---
12
 
13
+ # Housing Data Provided by Zillow (In Progress)
14
  Updated 2023-02-01
15
 
16
  This dataset contains several configs produced based on files available at https://www.zillow.com/research/data/.
zillow.py CHANGED
@@ -45,37 +45,37 @@ class Zillow(datasets.GeneratorBasedBuilder):
45
  datasets.BuilderConfig(
46
  name="home_values_forecasts",
47
  version=VERSION,
48
- description="This part of my dataset covers a first domain",
49
  ),
50
  datasets.BuilderConfig(
51
  name="new_construction",
52
  version=VERSION,
53
- description="This part of my dataset covers a second domain",
54
  ),
55
  datasets.BuilderConfig(
56
  name="for_sale_listings",
57
  version=VERSION,
58
- description="This part of my dataset covers a second domain",
59
  ),
60
  datasets.BuilderConfig(
61
  name="rentals",
62
  version=VERSION,
63
- description="This part of my dataset covers a second domain",
64
  ),
65
  datasets.BuilderConfig(
66
  name="sales",
67
  version=VERSION,
68
- description="This part of my dataset covers a second domain",
69
  ),
70
  datasets.BuilderConfig(
71
  name="home_values",
72
  version=VERSION,
73
- description="This part of my dataset covers a second domain",
74
  ),
75
  datasets.BuilderConfig(
76
  name="days_on_market",
77
  version=VERSION,
78
- description="This part of my dataset covers a second domain",
79
  ),
80
  ]
81
 
 
45
  datasets.BuilderConfig(
46
  name="home_values_forecasts",
47
  version=VERSION,
48
+ description="This data covers home value forecasts for the United States",
49
  ),
50
  datasets.BuilderConfig(
51
  name="new_construction",
52
  version=VERSION,
53
+ description="This dataset covers new construction data for the United States",
54
  ),
55
  datasets.BuilderConfig(
56
  name="for_sale_listings",
57
  version=VERSION,
58
+ description="This dataset covers for sale listings for the United States",
59
  ),
60
  datasets.BuilderConfig(
61
  name="rentals",
62
  version=VERSION,
63
+ description="This dataset covers rental data for the United States",
64
  ),
65
  datasets.BuilderConfig(
66
  name="sales",
67
  version=VERSION,
68
+ description="This dataset covers sales data for the United States",
69
  ),
70
  datasets.BuilderConfig(
71
  name="home_values",
72
  version=VERSION,
73
+ description="This dataset covers home values for the United States",
74
  ),
75
  datasets.BuilderConfig(
76
  name="days_on_market",
77
  version=VERSION,
78
+ description="This dataset covers days-on-market data for the United States",
79
  ),
80
  ]
81