You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/locales/en.ts
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -34,14 +34,14 @@ export const en = {
34
34
dataSet: 'Dataset',
35
35
dataSetTooltip: `Preprocess your data such that:
36
36
- missing values are removed or replaced;
37
-
- all columns (except your outcome label column) should have the same datatypes, e.g., numerical or categorical;
38
-
- the outcome label column is numerical`,
39
-
performanceMetric: 'Outcome label',
37
+
- all columns (except your bias variable column) should have the same datatypes, e.g., numerical or categorical;
38
+
- the bias variable column is numerical`,
39
+
performanceMetric: 'Bias variable',
40
40
performanceMetricTooltip:
41
-
'Clustering will be performed on the outcome labels. The outcome label should be numerical. Examples of outcome labels are "being classified as high risk" or "selected for an investigation"',
41
+
'Clustering will be performed on the bias variable. The bias variable should be numerical. Examples of bias variables are "being classified as high risk" or "selected for an investigation"',
42
42
dataType: 'Type of data',
43
43
dataTypeTooltip:
44
-
'Specify whether the data are categorical or numerical. All columns (except your outcome label column) should have the same data type',
44
+
'Specify whether the data are categorical or numerical. All columns (except your bias variable column) should have the same data type',
45
45
categoricalData: 'Categorical data',
46
46
numericalData: 'Numerical data',
47
47
filterSelect:
@@ -52,11 +52,11 @@ export const en = {
52
52
iterations: 'Iterations',
53
53
minClusterSize: 'Minimal cluster size',
54
54
performanceInterpretation: {
55
-
title: 'Outcome label interpretation',
56
-
lower: 'Lower value of outcome label is better, such as error rate',
57
-
higher: 'Higher value of outcome label is better, such as accuracy',
55
+
title: 'Bias variable interpretation',
56
+
lower: 'Lower value of bias variable is better, such as error rate',
57
+
higher: 'Higher value of bias variable is better, such as accuracy',
58
58
tooltip:
59
-
'When error rate or misclassifications are chosen as the outcome label, a lower value is preferred, as the goal is to minimize errors. Conversely, when accuracy or precision is selected as the outcome label, a higher value is preferred, reflecting the aim to maximize performance. Selected for an investigation or a false positive is consiered as disadvantageous, so for this outcome label a lower value is preferred',
59
+
'When error rate or misclassifications are chosen as the bias variable, a lower value is preferred, as the goal is to minimize errors. Conversely, when accuracy or precision is selected as the bias variable, a higher value is preferred, reflecting the aim to maximize performance. Selected for an investigation or a false positive is consiered as disadvantageous, so for this bias variable a lower value is preferred',
60
60
},
61
61
iterationsTooltip:
62
62
'Number of times the dataset is split in smaller clusters. Can terminate early if the minimum cluster size is reached',
@@ -66,7 +66,7 @@ export const en = {
66
66
},
67
67
errors: {
68
68
csvRequired: 'Please upload a csv file.',
69
-
targetColumnRequired: 'Please select a outcome label.',
69
+
targetColumnRequired: 'Please select a bias variable.',
70
70
dataTypeRequired: 'Please select a data type.',
71
71
noNumericColumns:
72
72
'No numeric columns found. Please upload a valid dataset.',
@@ -269,10 +269,10 @@ missing data are imputed. For {tooltip:syntheticData.missingDataMCARTooltip}Miss
- <i class="font-serif">H</i><sub>0</sub>: no difference in outcome labels between the most deviating cluster and the rest of the dataset
275
-
- <i class="font-serif">H</i><sub>1</sub>: difference in outcome labels between the most deviating cluster and the rest of the dataset
274
+
- <i class="font-serif">H</i><sub>0</sub>: no difference in bias variable between the most deviating cluster and the rest of the dataset
275
+
- <i class="font-serif">H</i><sub>1</sub>: difference in bias variable between the most deviating cluster and the rest of the dataset
276
276
277
277
A two-sided t-test is performed to accept or reject <i class="font-serif">H</i><sub>0</sub>:.
278
278
@@ -300,18 +300,18 @@ A two-sided t-test is performed to accept or reject <i class="font-serif">H</i><
300
300
301
301
<br>
302
302
303
-
In this example, we analyze which group is most adversely affected by the risk prediction algorithm. We do this by applying the clustering algorithm on the dataset previewed below. The column "is_recid" indicates whether a defendant reoffended or not (1: yes, 0: no). The "score_text" column indicates whether a defendant was predicted to reoffend (1: yes, 0: no). The column "false_positive" (FP) represents cases where a defendant was predicted to reoffended by the algorithm, but didn't do so (1: FP, 0: no FP). A preview of the data can be found below. The column "false_positive" is used as the outcome label.
303
+
In this example, we analyze which group is most adversely affected by the risk prediction algorithm. We do this by applying the clustering algorithm on the dataset previewed below. The column "is_recid" indicates whether a defendant reoffended or not (1: yes, 0: no). The "score_text" column indicates whether a defendant was predicted to reoffend (1: yes, 0: no). The column "false_positive" (FP) represents cases where a defendant was predicted to reoffended by the algorithm, but didn't do so (1: FP, 0: no FP). A preview of the data can be found below. The column "false_positive" is used as the bias variable.
304
304
`,
305
305
},
306
306
parameters: {
307
307
heading: '2. Hyperparameters selected for clustering',
0 commit comments