drop nan fields code example
Example: remove rows or columns with NaN value
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')