Skip to content
pyautark (soon)

@urban-toolkit/autk-db


@urban-toolkit/autk-db / AggregateFunction

Type Alias: AggregateFunction

AggregateFunction = "sum" | "avg" | "count" | "min" | "max" | "weighted" | "collect"

Defined in: use-cases/spatial-join/interfaces.ts:9

Supported aggregation functions for spatial join results.

Used within groupBy to compute aggregate values from join-side data.

Example

ts
const fn: AggregateFunction = 'count';

Released under the MIT License.