04pallav
9/11/2017 - 10:26 PM

Dropping null values by isfinite

Dropping null values by isfinite

df = df[np.isfinite(df['EPS'])]
df=df[pd.isnull(df['EPS'])]
df=df[pd.notnull(df['EPS'])]