-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.py
More file actions
213 lines (153 loc) · 6.06 KB
/
tools.py
File metadata and controls
213 lines (153 loc) · 6.06 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import os
import configparser
import datetime as dt
from pyspark.sql import SparkSession
from pyspark.sql.functions import avg
from pyspark.sql import SQLContext
from pyspark.sql.functions import isnan, when, count, col, udf, dayofmonth, dayofweek, month, year, weekofyear
from pyspark.sql.functions import monotonically_increasing_id
from pyspark.sql.types import *
import plotly.plotly as py
import plotly.graph_objs as go
import requests
requests.packages.urllib3.disable_warnings()
def visualize_missing_values(df):
"""Given a dataframe df, visualize it's missing values by columns
params:
df: dataframe of which the missing values should be displayed
"""
# lets explore missing values per column
nulls_df = pd.DataFrame(data= df.isnull().sum(), columns=['values'])
nulls_df = nulls_df.reset_index()
nulls_df.columns = ['cols', 'values']
# calculate % missing values
nulls_df['% missing values'] = 100*nulls_df['values']/df.shape[0]
plt.rcdefaults()
plt.figure(figsize=(10,5))
ax = sns.barplot(x="cols", y="% missing values", data=nulls_df)
ax.set_ylim(0, 100)
ax.set_xticklabels(ax.get_xticklabels(), rotation=90)
plt.show()
def visualize_missing_values_spark(df):
"""Visualize missing values in a spark dataframe
param
df: spark dataframe
"""
# create a dataframe with missing values count per column
nan_count_df = df.select([count(when(isnan(c) | col(c).isNull(), c)).alias(c) for c in df.columns]).toPandas()
# convert dataframe from wide format to long format
nan_count_df = pd.melt(nan_count_df, var_name='cols', value_name='values')
# count total records in df
total = df.count()
# now lets add % missing values column
nan_count_df['% missing values'] = 100*nan_count_df['values']/total
plt.rcdefaults()
plt.figure(figsize=(10,5))
ax = sns.barplot(x="cols", y="% missing values", data=nan_count_df)
ax.set_ylim(0, 100)
ax.set_xticklabels(ax.get_xticklabels(), rotation=90)
plt.show()
def clean_immigration(df):
"""Clean immigration dataframe
param
df: dataframe with monthly immigration data
"""
# EDA has shown these columns to exhibit over 90% missing values, and hence we drop them
drop_columns = ['occup', 'entdepu','insnum']
df = df.drop(columns=drop_columns)
# drop rows where all elements are missing
df = df.dropna(how='all')
return df
def clean_spark_immigration_data(df):
"""Clean immigration dataframe
param
df: spark dataframe with monthly immigration data
"""
total_records = df.count()
print(f'Total records in dataframe: {total_records:,}')
# EDA has shown these columns to exhibit over 90% missing values, and hence we drop them
drop_columns = ['occup', 'entdepu','insnum']
df = df.drop(*drop_columns)
# drop rows where all elements are missing
df = df.dropna(how='all')
new_total_records = df.count()
print(f'Total records after cleaning: {new_total_records:,}')
return df
def create_time_dim_table(df):
return df.count()
def clean_temperature_data(df):
"""Clean global temperatures dataset
param
df: dataframe representing global temperatures
"""
# drop rows with missing average temperature
df = df.dropna(subset=['AverageTemperature'])
# drop duplicate rows
df = df.drop_duplicates(subset=['dt', 'City', 'Country'])
return df
def clean_spark_temperature_data(df):
"""Clean global temperatures dataset
param
df: dataframe representing global temperatures
"""
total_records = df.count()
print(f'Total records in dataframe: {total_records:,}')
# drop rows with missing average temperature
df = df.dropna(subset=['AverageTemperature'])
total_recs_after_dropping_nas = df.count()
print('Total records after dropping rows with missing values: {:,}'.format(total_records-total_recs_after_dropping_nas))
# drop duplicate rows
df = df.drop_duplicates(subset=['dt', 'City', 'Country'])
print('Rows dropped after accounting for duplicates: {:,}'.format(total_recs_after_dropping_nas-df.count()))
return df
def aggregate_temperature_data(df):
"""Aggregate clean temperature data at country level
param
df: spark dataframe of clean global temperaturs data
"""
new_df = df.select(['Country', 'AverageTemperature']).groupby('Country').avg()
new_df = new_df.withColumnRenamed('avg(AverageTemperature)', 'average_temperature')
return new_df
def clean_demographics_data(df):
"""Clean the US demographics dataset
param
df: pandas dataframe of US demographics dataset
"""
# drop rows with missing values
subset_cols = [
'Male Population',
'Female Population',
'Number of Veterans',
'Foreign-born',
'Average Household Size'
]
df = df.dropna(subset=subset_cols)
# drop duplicate columns
df = df.drop_duplicates(subset=['City', 'State', 'State Code', 'Race'])
return df
def clean_spark_demographics_data(df):
"""Clean the US demographics dataset
param
df: spark dataframe of US demographics dataset
"""
# drop rows with missing values
subset_cols = [
'Male Population',
'Female Population',
'Number of Veterans',
'Foreign-born',
'Average Household Size'
]
new_df = df.dropna(subset=subset_cols)
rows_dropped = df.count()-new_df.count()
print("Rows dropped with missing values: {}".format(rows_dropped))
# drop duplicate columns
new_df2 = new_df.dropDuplicates(subset=['City', 'State', 'State Code', 'Race'])
rows_dropped_with_duplicates = new_df.count()-new_df2.count()
print(f"Rows dropped after accounting for duplicates: {rows_dropped_with_duplicates}")
return new_df2
def print_formatted_float(number):
print('{:,}'.format(number))