getHistogram
Usage
const formula = await dataSource.getHistogram({
column: 'column_A',
ticks: [5, 10, 15],
operation: 'count'
// + base options...
});Options
export interface HistogramRequestOptions extends BaseRequestOptions {
column: string;
ticks: number[];
operation: 'count' | 'avg' | 'min' | 'max' | 'sum';
}Response

Last updated
Was this helpful?
