I have fed the following CSV file into iPython Notebook:
public = pd.read_csv(\"categories.csv\") public
I\'ve also imported pandas as pd, nump
I found that using a for loop works well.
for col in ['col_variable_name_1', 'col_variable_name_2', ect..]: dataframe_name[col] = dataframe_name[col].astype(float)