drop rows with nan values pandas code example

Example 1: drop if nan in column pandas

df = df[df['EPS'].notna()]

Example 2: how to filter out all NaN values in pandas df

#return a subset of the dataframe where the column name value != NaN 
df.loc[df['column name'].isnull() == False]

Example 3: remove rows or columns with NaN value

df.dropna()     #drop all rows that have any NaN values
df.dropna(how='all')

Example 4: drop columns with nan pandas

>>> df.dropna(axis='columns')
       name
0    Alfred
1    Batman
2  Catwoman

Example 5: drop na pandas

>>> df.dropna(subset=['name', 'born'])
       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']]