While working in Pandas in Python...
I\'m working with a dataset that contains some missing values, and I\'d like to return a dataframe which contains only those rows wh
If you want to see only the rows that contains the NaN values you could do:
data_frame[data_frame.iloc[:, insert column number here]=='NaN']