Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierce Hayes committed Sep 21, 2022
1 parent 9f6258d commit bc2e078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arkouda/groupbyclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bc2e078

Please sign in to comment.