series select not NaN values pandas code example
Example 1: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()
Example 2: select non nan values python
df[~np.isnan(df)]
# to mark NaN column as True
df['your column name'].isnull()
df[~np.isnan(df)]