DataFrame.mode()
pandas.DataFrame.mode
-
DataFrame.mode(axis=0, numeric_only=False)
-
Gets the mode(s) of each element along the axis selected. Empty if nothing has 2+ occurrences. Adds a row for each mode per label, fills in gaps with nan.
Note that there could be multiple values returned for the selected axis (when more than one item share the maximum frequency), which is the reason why a dataframe is returned. If you want to impute missing values with the mode in a dataframe
df
, you can just do this:df.fillna(df.mode().iloc[0])
Parameters: axis : {0 or ‘index’, 1 or ‘columns’}, default 0
- 0 or ‘index’
- 0 or ‘index’