From 7d90ed3d569ec4f6d918193e07cdf957774e39bc Mon Sep 17 00:00:00 2001 From: Vedant Kadam <91219492+Vedant-Kadam-Noobie@users.noreply.github.com> Date: Mon, 7 Jul 2025 23:30:36 +0530 Subject: [PATCH] DOC: Improve clarity of GroupBy introduction sentence This small change clarifies the introductory sentence of the GroupBy user guide, as recommended for documentation improvements. It makes the definition of the "group by" process more direct and easier for new users to understand. --- doc/source/user_guide/groupby.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/source/user_guide/groupby.rst b/doc/source/user_guide/groupby.rst index 4ec34db6ed959..a7c285096e634 100644 --- a/doc/source/user_guide/groupby.rst +++ b/doc/source/user_guide/groupby.rst @@ -6,8 +6,7 @@ Group by: split-apply-combine ***************************** -By "group by" we are referring to a process involving one or more of the following -steps: +A "group by" operation involves some combination of the following steps: * **Splitting** the data into groups based on some criteria. * **Applying** a function to each group independently.