how to find rows that are not NaN code example
Example 1: filter nulla values only pandas
#Python, pandas
#Obtain a dataframe df containing only the rows where "column1" is null (NaN)
df[df['column1'].isnull()]
Example 2: select non nan values python
df[~np.isnan(df)]