Solved: ValueError: could not convert string to float: ‘’
When using Python and Pandas to load and manipulate data it is almost certain that at some point in time you will have to convert data to make it usable to the wider project.
When loading data, in our example originating from a csv file, into a pandas dataframe you will have the data represented as an object type. Even though initially usable there is a common need…