I\'m new to pandas and trying to figure out how to convert multiple columns which are formatted as strings to float64\'s. Currently I\'m doing the below, but it seems like
df.applymap(lambda x:float(x.rstrip('%'))/100)