fix: typos
Browse files
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 |
-
|
99 |
-
|
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 |
-
|
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 |
],
|