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