rows with nan pandas code example
Example 1: dataframe find nan rows
df[df.isnull().any(axis=1)]
Example 2: pandas if nan, then the row above
df.fillna(method='ffill')
df[df.isnull().any(axis=1)]
df.fillna(method='ffill')