@@ -1354,9 +1354,10 @@ The following aggregation methods are supported:
13541354*  * max-index*  - the zero-based index of the maximum value
13551355*  * mean*  - the mean value (average)
13561356*  * median*  - the median value
1357+ *  * mode*  - the value with the most occurrences
1358+ *  * pXX*  - the percentile value, where XX is a number in [ 00,99] 
13571359*  * deviation*  - the standard deviation
13581360*  * variance*  - the variance per [ Welford’s algorithm] ( https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm ) 
1359- *  * mode*  - the value with the most occurrences
13601361*  * x*  - the middle the bin’s * x* -extent (when binning on * x* )
13611362*  * x1*  - the lower bound of the bin’s * x* -extent (when binning on * x* )
13621363*  * x2*  - the upper bound of the bin’s * x* -extent (when binning on * x* )
@@ -1492,6 +1493,7 @@ The following aggregation methods are supported:
14921493*  * max-index*  - the zero-based index of the maximum value
14931494*  * mean*  - the mean value (average)
14941495*  * median*  - the median value
1496+ *  * pXX*  - the percentile value, where XX is a number in [ 00,99] 
14951497*  * deviation*  - the standard deviation
14961498*  * variance*  - the variance per [ Welford’s algorithm] ( https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm ) 
14971499*  a function - passed the array of values for each group
@@ -1579,10 +1581,11 @@ The Plot.normalizeX and Plot.normalizeY transforms normalize series values relat
15791581
15801582*  * first*  - the first value, as in an index chart; the default
15811583*  * last*  - the last value
1584+ *  * min*  - the minimum value
15821585*  * max*  - the maximum value
15831586*  * mean*  - the mean value (average)
15841587*  * median*  - the median value
1585- *  * min *  - the minimum  value
1588+ *  * pXX *  - the percentile  value, where XX is a number in  [ 00,99 ] 
15861589*  * sum*  - the sum of values
15871590*  * extent*  - the minimum is mapped to zero, and the maximum to one
15881591*  * deviation*  - each value is transformed by subtracting the mean and then dividing by the standard deviation
@@ -1601,6 +1604,7 @@ The following window reducers are supported:
16011604*  * mean*  - the mean (average)
16021605*  * median*  - the median
16031606*  * mode*  - the mode (most common occurrence)
1607+ *  * pXX*  - the percentile value, where XX is a number in [ 00,99] 
16041608*  * sum*  - the sum of values
16051609*  * deviation*  - the standard deviation
16061610*  * variance*  - the variance per [ Welford’s algorithm] ( https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm ) 
0 commit comments