PPLDAICamp
commited on
Update app.py
Browse files
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.
|
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
|