I followed the following procedure: In Python, how do I convert all of the items in a list to floats? because each column of my Dataframe is list, but instead o
list
This worked for me:
dt.applymap(lambda x: x[0] if type(x) is list else None)