File size: 2,125 Bytes
69c22e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# coding: utf-8

# In[1]:


import pandas as pd
import os

from helpers import (
    get_combined_df,
    save_final_df_as_jsonl,
    handle_slug_column_mappings,
)


# In[2]:


DATA_DIR = "../data"
PROCESSED_DIR = "../processed/"
FACET_DIR = "days_on_market/"
FULL_DATA_DIR_PATH = os.path.join(DATA_DIR, FACET_DIR)
FULL_PROCESSED_DIR_PATH = os.path.join(PROCESSED_DIR, FACET_DIR)


# In[3]:


data_frames = []

exclude_columns = [
    "RegionID",
    "SizeRank",
    "RegionName",
    "RegionType",
    "StateName",
    "Home Type",
]

slug_column_mappings = {
    "_mean_listings_price_cut_amt_": "Mean Listings Price Cut Amount",
    "_med_doz_pending_": "Median Days on Pending",
    "_median_days_to_pending_": "Median Days to Close",
    "_perc_listings_price_cut_": "Percent Listings Price Cut",
}


for filename in os.listdir(FULL_DATA_DIR_PATH):
    if filename.endswith(".csv"):
        print("processing " + filename)
        # skip month files for now since they are redundant
        if "month" in filename:
            continue

        cur_df = pd.read_csv(os.path.join(FULL_DATA_DIR_PATH, filename))

        if "_uc_sfrcondo_" in filename:
            cur_df["Home Type"] = "all homes (SFR + Condo)"
            # change column type to string
            cur_df["RegionName"] = cur_df["RegionName"].astype(str)
        elif "_uc_sfr_" in filename:
            cur_df["Home Type"] = "SFR"

        data_frames = handle_slug_column_mappings(
            data_frames, slug_column_mappings, exclude_columns, filename, cur_df
        )


combined_df = get_combined_df(
    data_frames,
    [
        "RegionID",
        "SizeRank",
        "RegionName",
        "RegionType",
        "StateName",
        "Home Type",
        "Date",
    ],
)

combined_df


# In[9]:


# Adjust column names
final_df = combined_df.rename(
    columns={
        "RegionID": "Region ID",
        "SizeRank": "Size Rank",
        "RegionName": "Region",
        "RegionType": "Region Type",
        "StateName": "State",
    }
)

final_df


# In[5]:


save_final_df_as_jsonl(FULL_PROCESSED_DIR_PATH, final_df)