Skip to content

Commit

Permalink
DOC: Correct groupby().mean() usage in table layout getting started a…
Browse files Browse the repository at this point in the history
…rticle (#55600)

* DOC: Correct groupby().mean() usage in table layout getting started article

* DOC: Explicitly select column in table layout article's groupby().mean() usage
  • Loading branch information
ragibson authored Oct 19, 2023
1 parent b3fa178 commit 70a1141
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ For more information about :meth:`~DataFrame.pivot_table`, see the user guide se

::

air_quality.groupby(["parameter", "location"]).mean()
air_quality.groupby(["parameter", "location"])[["value"]].mean()

.. raw:: html

Expand Down

0 comments on commit 70a1141

Please sign in to comment.