From bc2e0781c52f9140e95a951df89ad58d08f7b6a5 Mon Sep 17 00:00:00 2001 From: Pierce Hayes Date: Wed, 21 Sep 2022 11:54:05 -0400 Subject: [PATCH] fix docstring --- arkouda/groupbyclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arkouda/groupbyclass.py b/arkouda/groupbyclass.py index 17d100455b..c51cc40a8c 100644 --- a/arkouda/groupbyclass.py +++ b/arkouda/groupbyclass.py @@ -598,7 +598,7 @@ def var( >>> b = ak.randint(1,5,10) >>> b array([3, 3, 3, 4, 1, 1, 3, 3, 3, 4]) - >>> g.mean(b) + >>> g.var(b) (array([2 3 4]), array([2.333333333333333 1.2 0])) """ k, v = self.aggregate(values, "var", skipna, ddof)