python drop rows with nan in column code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: remove rows or columns with NaN value
df.dropna()
df.dropna(how='all')
Example 3: drop column with nan values
fish_frame = fish_frame.dropna(axis = 1, how = 'all')
Example 4: delete nans in df python
df[~np.isnan(df)]
Example 5: pandas dropna
df = pd.DataFrame({"name": ['Alfred', 'Batman', 'Catwoman'],
... "toy": [np.nan, 'Batmobile', 'Bullwhip'],
... "born": [pd.NaT, pd.Timestamp("1940-04-25"),
... pd.NaT]})
>>> df
name toy born
0 Alfred NaN NaT
1 Batman Batmobile 1940-04-25
2 Catwoman Bullwhip NaT
>>> df.dropna()
name toy born
1 Batman Batmobile 1940-04-25
Example 6: when converting from dataframe to list delete nan values
a = [[y for y in x if pd.notna(y)] for x in df.values.tolist()]
print (a)
[['str', 'aad', 'asd'], ['ddd'], ['xyz', 'abc'], ['btc', 'trz', 'abd']]