Skip to content

Commit f6aaad4

Browse files
committed
fix: remove insights from GAIA "decision alignment" and "average score"
1 parent 5306007 commit f6aaad4

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/lib/helpers/mcda-format.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,12 @@ export const buildMcdaKeyInsights = (
279279
"Computed from criterion-vector directions in the GAIA plane using cosine similarity.",
280280
},
281281
{
282-
title: "Average score",
283-
description: "Mean net flow across alternatives",
284-
value: formatPhi(average),
285-
detail: `Score spread (max-min): ${formatPhi(spread)}.`,
282+
title: "Score spread",
283+
description: "The difference between the highest and lowest net flow",
284+
value: formatPhi(spread),
285+
detail: `(max-min) = (${formatPhi(maxScore)}) - (${formatPhi(minScore)}). How separated the alternatives are.`,
286286
tooltip:
287-
"The net-flow mean is usually close to zero; spread indicates how separated the alternatives are.",
287+
"Spread indicates how strongly the best alternative outperforms the worst and how clearly differentiated the options are.",
288288
},
289289
{
290290
title: "GAIA quality",
@@ -304,13 +304,13 @@ export const buildMcdaKeyInsights = (
304304
tooltip:
305305
"GAIA quality indicates how much decision information is preserved in the 2D plane.",
306306
},
307-
{
308-
title: "Decision alignment",
309-
description: "Best aligned with GAIA decision stick",
310-
value: alignmentValue,
311-
detail: alignmentDetail,
312-
tooltip:
313-
"Alternative whose GAIA vector is most aligned with the decision stick direction.",
314-
},
307+
// {
308+
// title: "Decision alignment",
309+
// description: "Best aligned with GAIA decision stick",
310+
// value: alignmentValue,
311+
// detail: alignmentDetail,
312+
// tooltip:
313+
// "Alternative whose GAIA vector is most aligned with the decision stick direction.",
314+
// },
315315
];
316316
};

0 commit comments

Comments
 (0)