* Aggregate and pivot selected field values to become new fields. * This operator is useful to construction cross-tabulations. * @constructor * @param {Array } [params.groupby] - An array of accessors * to groupby. These fields act just like groupby fields of an Aggregate tr
(params)
| 118070 | * number of pivoted fields to generate. The pivoted field names are sorted in |
| 118071 | * ascending order prior to enforcing the limit. |
| 118072 | */ function Pivot(params) { |
| 118073 | Aggregate.call(this, params); |
| 118074 | } |
| 118075 | Pivot.Definition = { |
| 118076 | "type": "Pivot", |
| 118077 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected