I have a csv with the column 'c' with values like:
set()
['a', 'b', 'a', 'a', 'b']
{'a', 'b', 'd', 'e'}
I am currently reading the csv with and would like to pass the method into the converter.
pd.read_csv('tmp.csv', sep';', encoding='utf-8', converters={'c': pd.eval})
pd.eval is sadly not working. Does anyone know a solution/already implemented method for this?