Answers for "how to drop all the column with n/a in pandas"

1

Returns a new DataFrame omitting rows with null values

# Returns a new DataFrame omitting rows with null values

df4.na.drop().show()
# +---+------+-----+
# |age|height| name|
# +---+------+-----+
# | 10|    80|Alice|
# +---+------+-----+
Posted by: Guest on April-08-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 n/a in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language