Answers for "how to use mode in python in pandas"

1

impute mode pandas

cols = ["workclass", "native-country"]
df[cols]=df[cols].fillna(df.mode().iloc[0])
Posted by: Guest on December-01-2020

Code answers related to "how to use mode in python in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language