PANDAS return rows with nan code example
Example 1: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()
Example 2: show all rows with nan for a column value pandas
df[df['col'].isnull()]
Example 3: pandas if nan, then the row above
df.fillna(method='ffill')