I have a column in dataframe, which is created from the column name of another dataframe (with melt
function. Therefore the values are strings and not lists with floats inside. Columns look like this:
interval |
---|
[100.00, 3.00] |
[3.00, 2.00] |
[2.00, 1.00] |
[1, 0.25] |
[0.25, 0.00] |
What I need is a column with a list of floats. For loops doesn't look like a good or elegant idea and I don't have any other...