I have a dataframe with the following column:
file[\'DirViento\'] Fecha 2011-01-01 ENE 2011-01-02 ENE 2011-01-03 ENE 2011-01-04 NNE 2011-01-05
For whole dataframe, you can use:
dataframe.mode()
For specific column:
dataframe.mode()['Column'][0]
Second case is more useful in imputing the values.