time-to-botec/squiggle/node_modules/@stdlib/utils/tabulate-by/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

49 lines
1.3 KiB
Plaintext

{{alias}}( collection, [options,] indicator )
Generates a frequency table according to an indicator function.
When invoked, the indicator function is provided two arguments:
- `value`: collection value
- `index`: collection index
The table is an array of arrays where each sub-array corresponds to a unique
value in the input collection. Each sub-array is structured as follows:
- 0: unique value
- 1: value count
- 2: frequency percentage
If provided an empty collection, the function returns an empty array.
Parameters
----------
collection: Array|TypedArray|Object
Input collection to tabulate. If provided an object, the object must be
array-like (excluding strings and functions).
options: Object (optional)
Options.
options.thisArg: any (optional)
Execution context.
indicator: Function
Indicator function specifying how to categorize a collection element.
Returns
-------
out: Array<Array>|Array
Frequency table.
Examples
--------
> function indicator( value ) { return value[ 0 ]; };
> var collection = [ 'beep', 'boop', 'foo', 'beep' ];
> var out = {{alias}}( collection, indicator )
[ [ 'b', 3, 0.75 ], [ 'f', 1, 0.25 ] ]
See Also
--------