I use
Report.iloc[:,6:] = Report.iloc[:,6:].astype(float)
to convert those columns to float. The problem is, that it doesn´t change Report when used in my code file. But when I use it in the Console it works.
Report.iloc[:,6:] = Report.iloc[:,6:].astype(float)
Report.info()