@uwdata/mosaic-sql
Version:
SQL query construction and analysis.
11 lines • 490 B
TypeScript
import type { SelectQuery } from '../ast/query.js';
import type { ExprValue } from '../types.js';
/**
* Perform linear binning in one dimension.
* @param query The base query to bin.
* @param x The expression to bin.
* @param weight The expression to weight by.
* @param groupby Group by expressions.
*/
export declare function binLinear1d(query: SelectQuery, x: ExprValue, weight?: ExprValue | undefined, groupby?: string[]): SelectQuery;
//# sourceMappingURL=bin-linear-1d.d.ts.map