Answers for "how to dropna from pandas particular column"

1

dropna for specific column pandas

df = df[df['EPS'].notna()] #instead of dropping, take another DF with non-na values
Posted by: Guest on June-02-2021
0

drop na in pandas

>>> df.dropna(subset=['name', 'born'])
       name        toy       born
1    Batman  Batmobile 1940-04-25
Posted by: Guest on January-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language