I have a data frame with 2Lakh records, one of the numeric column(Volume) contains the strings. Would like to access those rows and replace with most frequent value.
I tried below but getting an error.
df[df["Volume"].dtype!=np.int64]
KeyError: True
During handling of the above exception, another exception occurred: