misikoff commited on
Commit
18bcae8
·
1 Parent(s): 8d9c061

fix: typos

Browse files
Files changed (1) hide show
  1. zillow.py +7 -7
zillow.py CHANGED
@@ -94,10 +94,10 @@ class Zillow(datasets.GeneratorBasedBuilder):
94
  "Metro": datasets.Value(dtype="string", id="Metro"),
95
  "County": datasets.Value(dtype="string", id="County"),
96
  "Date": datasets.Value(dtype="string", id="Date"),
97
- "Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
98
- dtype="float32",
99
- id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
100
- ),
101
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
102
  dtype="float32",
103
  id="Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)",
@@ -350,9 +350,9 @@ class Zillow(datasets.GeneratorBasedBuilder):
350
  "Metro": data["Metro"],
351
  "County": data["County"],
352
  "Date": data["Date"],
353
- "Month Over Month % (Smoothed) (Seasonally Adjusted)": data[
354
- "Month Over Month % (Smoothed) (Seasonally Adjusted)"
355
- ],
356
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": data[
357
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)"
358
  ],
 
94
  "Metro": datasets.Value(dtype="string", id="Metro"),
95
  "County": datasets.Value(dtype="string", id="County"),
96
  "Date": datasets.Value(dtype="string", id="Date"),
97
+ # "Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
98
+ # dtype="float32",
99
+ # id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
100
+ # ),
101
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
102
  dtype="float32",
103
  id="Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)",
 
350
  "Metro": data["Metro"],
351
  "County": data["County"],
352
  "Date": data["Date"],
353
+ # "Month Over Month % (Smoothed) (Seasonally Adjusted)": data[
354
+ # "Month Over Month % (Smoothed) (Seasonally Adjusted)"
355
+ # ],
356
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": data[
357
  "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)"
358
  ],