[DOCS] Backport normalize aggregation fix (#63017)

This is a backport of 8534bd5ce79103bf2d5d41c2ebb278ac53583631 which was only applied to the master branch, but not to 7.x or 7.$current
This commit is contained in:
Alexander Reelsen 2020-09-29 17:17:40 +02:00 committed by GitHub
parent 0b3af242d4
commit a6548117d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ _rescale_0_1_::
[0, 0, .1111, 1, .1111, .3333] [0, 0, .1111, 1, .1111, .3333]
_rescale_0_100_:: _rescale_0_100_::
This method rescales the data such that the minimum number is zero, and the maximum number is 1, with the rest normalized This method rescales the data such that the minimum number is zero, and the maximum number is 100, with the rest normalized
linearly in-between. linearly in-between.
x' = 100 * (x - min_x) / (max_x - min_x) x' = 100 * (x - min_x) / (max_x - min_x)