From ada614b684b65133b4248123a9b8238de474ef0a Mon Sep 17 00:00:00 2001 From: Micah Wambua Date: Tue, 11 Nov 2025 23:14:45 +0300 Subject: [PATCH] DOC: Improved clarity of groupby() documentation explanation --- doc/source/user_guide/groupby.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/groupby.rst b/doc/source/user_guide/groupby.rst index b8f7e1477d85d..5661d3925e202 100644 --- a/doc/source/user_guide/groupby.rst +++ b/doc/source/user_guide/groupby.rst @@ -5,7 +5,7 @@ ***************************** Group by: split-apply-combine ***************************** - +The groupby() function allows you to divide your dataset into groups based on one or more keys, apply an operation to each group independently (such as calculating a sum or mean), and then combine the results back into a new DataFrame By "group by" we are referring to a process involving one or more of the following steps: