I have a Series of strings that represent cost data. I am attempting to convert the strings to floats
df['Line Total'].map(float)
which results in
ValueError: invalid literal for float(): 3,300.00
3,300.00 is the value from the first row of data.
I ran df['Line Total'].map(repr)
based on the suggestion from here python ValueError: invalid literal for float() but I don't see any extra or unnecessary characters in my data:
Thanks in advance for any help.