Skip to content

Commit fb89c66

Browse files
committed
Add localization for NaN treatment options in English and Dutch; include titles, descriptions, and tooltips for handling missing values in synthetic data generation.
1 parent d89ba42 commit fb89c66

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/locales/en.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,13 @@ export const en = {
110110
tooltip:
111111
'By default, the CART method is used to generate synthetic data. CART generally produces higher quality synthetic data, but might not work well on datasets with categorical variables with 20+ categories. Use Gaussian Copula in those cases.',
112112
},
113+
nanTreatment: {
114+
title: 'NaN Values Treatment',
115+
drop: 'Drop rows with NaN values',
116+
impute: 'Impute NaN values',
117+
tooltip:
118+
'When using Gaussian Copula, you can choose how to handle missing values (NaN values) in your dataset. Dropping rows with NaN values removes them completely, while imputation replaces them with mean values for numerical columns and mode values for categorical columns.',
119+
},
113120
samples: 'Number of synthetic datapoints',
114121
},
115122
actions: {

src/locales/nl.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,13 @@ export const nl = {
113113
tooltip:
114114
'In principe wordt de CART-methode gebruikt om synthetische data te genereren. CART levert over het algemeen synthetische data van hoge kwaliteit, maar werkt mogelijk niet goed bij datasets met categorische variabelen met meer dan 20 categorieën. Gebruik in die gevallen de Gaussian Copula.',
115115
},
116+
nanTreatment: {
117+
title: 'NaN Waarden Behandeling',
118+
drop: 'Verwijder rijen met NaN waarden',
119+
impute: 'Vervang NaN waarden',
120+
tooltip:
121+
'Bij gebruik van Gaussian Copula kunt u kiezen hoe u omgaat met ontbrekende waarden (NaN waarden) in uw dataset. Het verwijderen van rijen met NaN waarden verwijdert deze volledig, terwijl imputatie deze vervangt door gemiddelde waarden voor numerieke kolommen en modus waarden voor categorische kolommen.',
122+
},
116123
samples: 'Aantal synthetische datapunten',
117124
},
118125
actions: {

0 commit comments

Comments
 (0)