pandas drop all na code example
Example 1: remove rows or columns with NaN value
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')
Example 2: delete nans in df python
df[~np.isnan(df)]
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')
df[~np.isnan(df)]