We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cad7def commit 80ec483Copy full SHA for 80ec483
src/Data/DataFrame/Operations/Aggregation.hs
@@ -149,6 +149,9 @@ groupColumns indices df acc name =
149
(Just (BoxedColumn column)) ->
150
let vs = V.map (`getIndices` column) indices
151
in insertColumn' name (Just $ GroupedBoxedColumn vs) acc
152
+ (Just (OptionalColumn column)) ->
153
+ let vs = V.map (`getIndices` column) indices
154
+ in insertColumn' name (Just $ GroupedBoxedColumn vs) acc
155
(Just (UnboxedColumn column)) ->
156
let vs = V.map (`getIndicesUnboxed` column) indices
157
in insertColumn' name (Just $ GroupedUnboxedColumn vs) acc
0 commit comments