AggregateBy

Documentation for AggregateBy.

Currently supported operations:

  • count
  • sum
  • collect
  • minimum
  • maximum
AggregateBy.ByMethod
By(fkey=identity, fval=identity)
By{K,V}(fkey=identity, fval=identity)

By creates an object that triggers "key-selective" operations on a collection. fkey(item) generates the key (i.e., the aggregation target), and fval(item) gets used in the aggregation operation.

The return value is typically a Dict. Optionally, you can specify the key K and value V types of that Dict, which can help performance in certain cases (see the documentation for details).

Examples

julia> count(By(lowercase), "Hello")
Dict{Char, Int64} with 4 entries:
  'h' => 1
  'l' => 2
  'e' => 1
  'o' => 1

julia> collect(By(isodd), 1:11)
Dict{Bool, Vector{Int64}} with 2 entries:
  0 => [2, 4, 6, 8, 10]
  1 => [1, 3, 5, 7, 9, 11]
source