eliminate rows with nan pandas code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: dropping nan in pandas dataframe
df.dropna(subset=['name', 'born'])
Example 3: clean nas from column pandas
>>> df.dropna()
name toy born
1 Batman Batmobile 1940-04-25
Example 4: 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']]