pandas filter not NaN code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: pandas filter non nan
filtered_df = df[df['name'].notnull()]
Example 3: 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 4: select non nan values python
df[~np.isnan(df)]