Processes data from the specified IPivotData instance and calculates PivotData values
Namespace: NReco.PivotData
Assembly: NReco.PivotData (in NReco.PivotData.dll) Version: 1.4.1
Syntax
Parameters
- data
- Type: NReco.PivotDataIPivotData
input data represented by IPivotData instance - aggregatorNames
- Type: SystemString
field names for accessing aggregator values
Remarks
Examples
IPivotData sourcePvtData; // dimensions: "month", "store" and one sum measure var pvtData = new PivotData(new[] {"store"}, new AverageAggregatorFactory("value") ); pvtData.ProcessData(sourcePvtData, "value");
See Also