remove nan columns code example
Example 1: drop columns with nan pandas
>>> df.dropna(axis='columns')
name
0 Alfred
1 Batman
2 Catwoman
Example 2: drop column with nan values
fish_frame = fish_frame.dropna(axis = 1, how = 'all')
>>> df.dropna(axis='columns')
name
0 Alfred
1 Batman
2 Catwoman
fish_frame = fish_frame.dropna(axis = 1, how = 'all')