Skip to content

Commit

Permalink
Reviews data frame analytics UI text (elastic#93033) (elastic#93562)
Browse files Browse the repository at this point in the history
Co-authored-by: Lisa Cawley <lcawley@elastic.co>
  • Loading branch information
szabosteve and lcawl authored Mar 4, 2021
1 parent 73bc704 commit ead6eee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]}
Expand All @@ -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]}
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ead6eee

Please sign in to comment.