How can I return a list of tuples where each tuple contains the values of the row that has a nan value from a Pandas DF?
I saw suggestion to use this:
[odfscsv_df.iloc[i, j] for i, j in zip(*np.where(pd.isnull(odfscsv_df)))]
But this only shows you the nan values. I Want to return the entire row that has this nan value