Update StatsTableUtils.ts (#2568)
This commit is contained in:
Родитель
12a678edc3
Коммит
6898acd095
|
@ -69,7 +69,7 @@ export function generateCohortsStatsTable(
|
|||
let countMinCohortName = "";
|
||||
let countMaxCohortName = "";
|
||||
cohorts.forEach((errorCohort, cohortIndex) => {
|
||||
const labeledStat = labeledStatistics[cohortIndex].find(
|
||||
const labeledStat = labeledStatistics[cohortIndex]?.find(
|
||||
(labeledStat) => labeledStat.key === TotalCohortSamples
|
||||
);
|
||||
if (labeledStat) {
|
||||
|
@ -104,7 +104,7 @@ export function generateCohortsStatsTable(
|
|||
let metricMax = Number.MIN_SAFE_INTEGER;
|
||||
let metricMaxCohortName = "";
|
||||
cohorts.forEach((errorCohort, cohortIndex) => {
|
||||
const labeledStat = labeledStatistics[cohortIndex].find(
|
||||
const labeledStat = labeledStatistics[cohortIndex]?.find(
|
||||
(labeledStat) => labeledStat.key === metricOption.key
|
||||
);
|
||||
if (labeledStat) {
|
||||
|
@ -134,7 +134,7 @@ export function generateCohortsStatsTable(
|
|||
};
|
||||
fairnessStats.push(metricFairnessStats);
|
||||
cohorts.forEach((_errorCohort, cohortIndex) => {
|
||||
const labeledStat = labeledStatistics[cohortIndex].find(
|
||||
const labeledStat = labeledStatistics[cohortIndex]?.find(
|
||||
(labeledStat) => labeledStat.key === metricOption.key
|
||||
);
|
||||
if (labeledStat && !Number.isNaN(labeledStat.stat)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче