Skip to content

Commit

Permalink
docs: Update pivot docstring for clarity (#18000)
Browse files Browse the repository at this point in the history
  • Loading branch information
deanm0000 committed Aug 5, 2024
1 parent 0f78c9e commit 06e4fa4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7828,16 +7828,18 @@ def pivot(
Parameters
----------
on
Name of the column(s) whose values will be used as the header of the output
The column(s) whose values will be used as the new columns of the output
DataFrame.
index
One or multiple keys to group by. If None, all remaining columns not specified
on `on` and `values` will be used. At least one of `index` and `values` must
be specified.
The column(s) that remain from the input to the output. The output DataFrame will have one row
for each unique combination of the `index`'s values.
If None, all remaining columns not specified on `on` and `values` will be used. At least one
of `index` and `values` must be specified.
values
One or multiple keys to group by. If None, all remaining columns not specified
on `on` and `index` will be used. At least one of `index` and `values` must
be specified.
The existing column(s) of values which will be moved under the new columns from index. If an
aggregation is specified, these are the values on which the aggregation will be computed.
If None, all remaining columns not specified on `on` and `index` will be used.
At least one of `index` and `values` must be specified.
aggregate_function
Choose from:
Expand Down

0 comments on commit 06e4fa4

Please sign in to comment.