Hapus baris atau kolom dengan nilai NAN

df.dropna()     #drop all rows that have any NaN values
df.dropna(how='all')
Desert Trap