Skip to content

Commit

Permalink
bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
realratchet committed Apr 5, 2024
1 parent b7a9308 commit 121af91
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions nimlite/funcs/groupby.nim
Original file line number Diff line number Diff line change
Expand Up @@ -448,18 +448,18 @@ method value*(self: GroupByMode): Option[PY_ObjectND] =
proc getGroupByFunction(acc: Accumulator): GroupByFunction =
return (
case acc:
of Accumulator.Max: newGroupbyMax()
of Accumulator.Min: newGroupbyMin()
of Accumulator.Sum: newGroupBySum()
of Accumulator.Product: newGroupByProduct()
of Accumulator.First: newGroupByFirst()
of Accumulator.Last: newGroupByLast()
of Accumulator.Count: newGroupByCount()
of Accumulator.CountUnique: newGroupByCountUnique()
of Accumulator.Average: newGroupByAverage()
of Accumulator.StandardDeviation: newGroupByStandardDeviation()
of Accumulator.Median: newGroupByMedian()
of Accumulator.Mode: newGroupByMode()
of Max: newGroupbyMax()
of Min: newGroupbyMin()
of Sum: newGroupBySum()
of Product: newGroupByProduct()
of First: newGroupByFirst()
of Last: newGroupByLast()
of Count: newGroupByCount()
of CountUnique: newGroupByCountUnique()
of Average: newGroupByAverage()
of StandardDeviation: newGroupByStandardDeviation()
of Median: newGroupByMedian()
of Mode: newGroupByMode()
)

proc getPages(indices: seq[seq[PY_ObjectND]], columnIndex: int): seq[nimpy.PyObject] =
Expand Down

0 comments on commit 121af91

Please sign in to comment.