From 41084fb8a26f373ca152c46b7c6545bc7f7546a6 Mon Sep 17 00:00:00 2001 From: Karthik Velayutham Date: Thu, 2 Feb 2023 09:40:18 -0600 Subject: [PATCH] FEAT: Add initial partial support for groupby.cumcount() (#54) (service) --- modin/core/execution/client/query_compiler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modin/core/execution/client/query_compiler.py b/modin/core/execution/client/query_compiler.py index 09b4876d2b2..a99f5d66184 100644 --- a/modin/core/execution/client/query_compiler.py +++ b/modin/core/execution/client/query_compiler.py @@ -911,6 +911,7 @@ def forwarding_method(self, by, *args, **kwargs): "any", "size", "skew", + "cumcount", "cumsum", "cummax", "cummin",