Answers for "how to drop all the column with na in pandas"

0

drop column with nan values

fish_frame = fish_frame.dropna(axis = 1, how = 'all')
Posted by: Guest on August-27-2020
0

dropna threshold

#dropping columns having more than 50% missing values(1994/2==1000)
df=df.dropna(thresh=1000,axis=1)
Posted by: Guest on October-17-2020

Code answers related to "how to drop all the column with na in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language