pandas select all non nan values code example
Example 1: dataframe find nan rows
df[df.isnull().any(axis=1)]
Example 2: find nan values in a column pandas
df['your column name'].isnull().values.any()
Example 3: select non nan values python
df[~np.isnan(df)]