reveal-sdk-node
Version:
RevealBI Node.js SDK
43 lines (42 loc) • 745 B
TypeScript
export declare enum RVDashboardAggregationType {
/**
* Automatically selects the most appropriate aggregation.
*/
Auto = 0,
/**
* Count of rows, including empty and repeated rows.
*/
CountRows = 1,
/**
* Count of non empty rows.
*/
CountNonEmpty = 2,
/**
* Count of distinct rows.
*/
CountDistinct = 3,
/**
* Minimum value
*/
Min = 4,
/**
* Maximum value
*/
Max = 5,
/**
* Sum of all values
*/
Sum = 6,
/**
* Average of values
*/
Avg = 7,
/**
* Standard deviation of values.
*/
StDev = 8,
/**
* Variance.
*/
Variance = 9
}