PPLDAICamp commited on
Commit
76c1f34
·
verified ·
1 Parent(s): 60abb36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ cat_value_dicts = {}
28
  final_colname = uncleaned_data.columns[len(uncleaned_data.columns) - 1]
29
 
30
  # for each column...
31
- for (colname, colval) in uncleaned_data.iteritems():
32
 
33
  # check if col is already a number; if so, add col directly
34
  # to new dataframe and skip to next column
 
28
  final_colname = uncleaned_data.columns[len(uncleaned_data.columns) - 1]
29
 
30
  # for each column...
31
+ for (colname, colval) in uncleaned_data.items():
32
 
33
  # check if col is already a number; if so, add col directly
34
  # to new dataframe and skip to next column