Suppose a
is a JuliaDB table, is the below the best (most efficient) way to compute the number of rows per group?
using LambdaFn, DataFrames, JuliaDB
a = DataFrame(Column1 = rand(["a", "b", "c"], 1_000), b = rand(1000)) |> JuliaDB.table
@time JuliaDB.groupby(@λ(size(_,1)), a, :Column1)