python drop column if nan code example
Example 1: drop if nan in column pandas
df = df[df['EPS'].notna()]
Example 2: drop column with nan values
fish_frame = fish_frame.dropna(axis = 1, how = 'all')
df = df[df['EPS'].notna()]
fish_frame = fish_frame.dropna(axis = 1, how = 'all')