I can use pandas dropna() functionality to remove rows with some or all columns set as NA\'s. Is there an equivalent function for drop
pandas
dropna()
NA
I think this solution is the shortest :
df= df[df['ColName'] != 0]