Ilya
0
Q:

drop na in pandas

>>> df.dropna(axis='columns')
       name
0    Alfred
1    Batman
2  Catwoman
1
>>> df.dropna(subset=['name', 'born'])
       name        toy       born
1    Batman  Batmobile 1940-04-25
0
# importing pandas as pd 
import pandas as pd 
  
# Creating the Index 
idx = pd.Index(['Jan', 'Feb', 'Mar', None, 'May', 'Jun', 
                None, 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']) 
  
# Print the Index 
idx 
1

New to Communities?

Join the community