mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Reviews data frame analytics UI text (#93033)
Co-authored-by: Lisa Cawley <lcawley@elastic.co>
This commit is contained in:
parent
89373490d0
commit
284a77c7c0
3 changed files with 5 additions and 5 deletions
|
@ -560,7 +560,7 @@ export const AdvancedStepForm: FC<CreateAnalyticsStepProps> = ({
|
|||
})}
|
||||
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.maxNumThreadsHelpText', {
|
||||
defaultMessage:
|
||||
'The maximum number of threads to be used by the analysis. The default value is 1',
|
||||
'The maximum number of threads to be used by the analysis. The default value is 1.',
|
||||
})}
|
||||
isInvalid={maxNumThreads === 0}
|
||||
error={
|
||||
|
|
|
@ -30,7 +30,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
|
|||
})}
|
||||
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.methodHelpText', {
|
||||
defaultMessage:
|
||||
'Sets the method that outlier detection uses. If not set, uses an ensemble of different methods and normalises and combines their individual outlier scores to obtain the overall outlier score. We recommend to use the ensemble method',
|
||||
'Sets the method that outlier detection uses. If not set, uses an ensemble of different methods, normalizes and combines their individual outlier scores to obtain the overall outlier score. It is recommended to use the ensemble method.',
|
||||
})}
|
||||
isInvalid={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.METHOD] !== undefined}
|
||||
error={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.METHOD]}
|
||||
|
@ -56,7 +56,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
|
|||
})}
|
||||
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.nNeighborsHelpText', {
|
||||
defaultMessage:
|
||||
'The value for how many nearest neighbors each method of outlier detection will use to calculate its outlier score. When not set, different values will be used for different ensemble members. Must be a positive integer',
|
||||
'The value for how many nearest neighbors each method of outlier detection uses to calculate its outlier score. When not set, different values are used for different ensemble members. Must be a positive integer.',
|
||||
})}
|
||||
isInvalid={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.N_NEIGHBORS] !== undefined}
|
||||
error={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.N_NEIGHBORS]}
|
||||
|
@ -66,7 +66,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
|
|||
'xpack.ml.dataframe.analytics.create.nNeighborsInputAriaLabel',
|
||||
{
|
||||
defaultMessage:
|
||||
'The value for how many nearest neighbors each method of outlier detection will use to calculate its outlier score.',
|
||||
'The value for how many nearest neighbors each method of outlier detection uses to calculate its outlier score.',
|
||||
}
|
||||
)}
|
||||
data-test-subj="mlAnalyticsCreateJobWizardnNeighborsInput"
|
||||
|
|
|
@ -539,7 +539,7 @@ export const ConfigurationStepForm: FC<CreateAnalyticsStepProps> = ({
|
|||
'xpack.ml.dataframe.analytics.create.scatterplotMatrixLabelHelpText',
|
||||
{
|
||||
defaultMessage:
|
||||
'Visualizes the relationships between pairs of selected included fields',
|
||||
'Visualizes the relationships between pairs of selected included fields.',
|
||||
}
|
||||
)}
|
||||
fullWidth
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue