I have a matrix with header's and want to remove all rows based on the column, "Closed Date", having "NaN".
Input:
raw_data.ix[~(raw_data['Closed Date'] == "NaN")]
Output:
Closed Date
NaN
NaN
9/28/2017 19:51
NaN
Why is "NaN" still there?