Would like to do the following logic (expressed as sql) using this library
select column1, column2, count(*) as count
from table
group by column1, column2
What i tried
dataFrame.
GroupBy(groupby.Columns("column1", "column2")).
Aggregate(qframe.Aggregation{
Fn: count,
Column: "count",
})
Result
Aggregate: unknown column: "count"