how to drop rows that have nan in column pandas code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: delete nans in df python
df[~np.isnan(df)]
df = df[df['EPS'].notna()]
df[~np.isnan(df)]