Spaces:
Sleeping
Sleeping
Upload static/index.html with huggingface_hub
Browse files- static/index.html +9 -7
static/index.html
CHANGED
|
@@ -334,13 +334,15 @@
|
|
| 334 |
};
|
| 335 |
|
| 336 |
const ACTION_DESC = {
|
| 337 |
-
'remove_duplicates':
|
| 338 |
-
'rename_columns':
|
| 339 |
-
'
|
| 340 |
-
'
|
| 341 |
-
'
|
| 342 |
-
'
|
| 343 |
-
'
|
|
|
|
|
|
|
| 344 |
};
|
| 345 |
|
| 346 |
const COMPONENT_COLORS = {
|
|
|
|
| 334 |
};
|
| 335 |
|
| 336 |
const ACTION_DESC = {
|
| 337 |
+
'remove_duplicates': 'Delete repeated rows',
|
| 338 |
+
'rename_columns': 'Convert to snake_case',
|
| 339 |
+
'fill_missing_mean': 'Fill cells with MEAN',
|
| 340 |
+
'fill_missing_mode': 'Fill cells with MODE',
|
| 341 |
+
'fill_missing_median': 'Fill cells with MEDIAN',
|
| 342 |
+
'fix_dtype': 'Fix wrong data types',
|
| 343 |
+
'remove_outliers': 'Remove extreme values',
|
| 344 |
+
'validate_schema': 'Check column names',
|
| 345 |
+
'finish': 'Submit cleaned dataset'
|
| 346 |
};
|
| 347 |
|
| 348 |
const COMPONENT_COLORS = {
|