drop nan values code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: how to delete nan values in python
x = x[~numpy.isnan(x)]
Example 3: pandas drop row with nan
import pandas as pd
df = pd.DataFrame({'values_1': ['700','ABC','500','XYZ','1200'],
'values_2': ['DDD','150','350','400','5000']
})
df = df.apply (pd.to_numeric, errors='coerce')
df = df.dropna()
df = df.reset_index(drop=True)
print (df)
Example 4: drop na pandas
>>> df.dropna(subset=['name', 'born'])
name toy born
1 Batman Batmobile 1940-04-25
Example 5: drop column with nan values
fish_frame = fish_frame.dropna(axis = 1, how = 'all')