when importing in pandas the data looks like that:
>>> BOM.PriceQty['substrate']
'[200.0, 300.0, 500.0]'
how do I convert it to list of floats? tried convert_objact:
>>> BOM.PriceQty['substrate'].convert_object(convert_numeric=True)
Traceback (most recent call last): File "", line 1, in AttributeError: 'str' object has no attribute 'convert_object'
Thanks!