remove all columns with nan pandas code example
Example 1: 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 2: remove rows or columns with NaN value
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')
Example 3: remove a rows in which three column has nan
df.dropna(subset=['col1', 'col2', 'col3', 'col4', 'col5', 'col6'], how='all', inplace=True)