+
+
+
+
+
{i18n.translate(
- 'xpack.ml.dataframe.analytics.classificationExploration.classificationDocsLink',
+ 'xpack.ml.dataframe.analytics.classificationExploration.evaluateJobIdTitle',
{
- defaultMessage: 'Classification evaluation docs ',
+ defaultMessage: 'Evaluation of classification job ID {jobId}',
+ values: { jobId: jobConfig.id },
}
)}
-
-
-
-
- {error !== null && (
-
-
+
+
- )}
- {error === null && (
-
+ {jobStatus !== undefined && (
-
-
- {getHelpText(dataSubsetTitle)}
-
-
-
-
-
+ {getTaskStateBadge(jobStatus)}
- {docsCount !== null && (
+ )}
+
+
+
+ {i18n.translate(
+ 'xpack.ml.dataframe.analytics.classificationExploration.classificationDocsLink',
+ {
+ defaultMessage: 'Classification evaluation docs ',
+ }
+ )}
+
+
+
+
+ {error !== null && }
+ {error === null && (
+
+
+
+
+ {getHelpText(dataSubsetTitle)}
+
-
-
-
+
- )}
- {/* BEGIN TABLE ELEMENTS */}
-
-
-
-
+
+ {docsCount !== null && (
+
+
+
+ )}
+ {/* BEGIN TABLE ELEMENTS */}
+
+
+
+
+
+
+
+
+ {columns.length > 0 && columnsData.length > 0 && (
+ <>
+
+
+
+
+
+
+
-
-
-
-
- {columns.length > 0 && columnsData.length > 0 && (
-
-
-
-
-
-
-
-
-
-
-
-
- )}
-
-
-
-
- )}
- {/* END TABLE ELEMENTS */}
-
+ columns={shownColumns}
+ columnVisibility={{ visibleColumns, setVisibleColumns }}
+ rowCount={rowCount}
+ renderCellValue={renderCellValue}
+ inMemory={{ level: 'sorting' }}
+ toolbarVisibility={{
+ showColumnSelector: true,
+ showStyleSelector: false,
+ showFullScreenSelector: false,
+ showSortSelector: false,
+ }}
+ popoverContents={popoverContents}
+ gridStyle={{ rowHover: 'none' }}
+ trailingControlColumns={
+ showTrailingColumns === true && showFullColumns === false
+ ? getTrailingControlColumns(extraColumns, setShowFullColumns)
+ : undefined
+ }
+ />
+ >
+ )}
+
+
+
+ )}
+ {/* END TABLE ELEMENTS */}