From fe989c58a70df4af2a6f1bbe4ace33dd13ef32de Mon Sep 17 00:00:00 2001 From: Matthew Rocklin Date: Tue, 6 Feb 2024 09:53:32 -0600 Subject: [PATCH] Fix typo in dataframe docs --- docs/source/dataframe.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/dataframe.rst b/docs/source/dataframe.rst index 2152375093d..7d9098d1ddb 100644 --- a/docs/source/dataframe.rst +++ b/docs/source/dataframe.rst @@ -92,7 +92,7 @@ Dask DataFrame copies pandas, and so should be familiar to most users >>> df = df[df.value >= 0] >>> joined = df.merge(other, on="account") - >>> result = joined.groupby("account") + >>> result = joined.groupby("account").value.mean() >>> result alice 123