In [8]:
import pandas as pd
import numpy as np
In [9]:
data = pd.read_csv("LAFD_ResponseMetrics_RawData.csv")
data.head()
Out[9]:
In [13]:
fullData = data.copy(deep=True)
fullData = fullData.dropna(how='any')
fullData
Out[13]:
So it seems to be the case that every row has at least one missing value. sigh
In [14]:
fullData = data.copy(deep=True)
fullData = fullData.dropna(how='all')
len(fullData)
Out[14]:
In [15]:
len(data)-len(fullData)
Out[15]:
No row has completely missing data.
In [ ]: