Skip to content

DOC: Groupby transform should mention that parameter can be a string #50029

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f21dc32
feat: adding to the function docs that transform function parameter c…
seanjedi Dec 1, 2022
ef6c095
docs: updating docs for groupby
seanjedi Dec 2, 2022
6068105
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 3, 2022
3b84281
doc: updating docs to fix PR comments
seanjedi Dec 3, 2022
ea09518
Merge branch 'SEANJEDI-49961_Docs_for_groupby_transform_should_mentio…
seanjedi Dec 3, 2022
3d04504
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 3, 2022
8f4b8c7
fix: fixing failing doc check
seanjedi Dec 4, 2022
b06287e
docs: updating docs according to PR comment
seanjedi Dec 4, 2022
f6c24f7
docs: fixing PR comment
seanjedi Dec 4, 2022
207abd6
docs: updating docs to better suit dataframes and series
seanjedi Dec 4, 2022
aa0c6eb
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 4, 2022
90cae51
docs: resolving PR comments
seanjedi Dec 5, 2022
36f31f1
docs: fixing PR check failure
seanjedi Dec 6, 2022
9fa6aec
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 6, 2022
1b6a971
Merge branch 'SEANJEDI-49961_Docs_for_groupby_transform_should_mentio…
seanjedi Dec 6, 2022
9223b59
docs: resolving PR comments
seanjedi Dec 6, 2022
0651cdc
docs: fixing issue with docstring validation
seanjedi Dec 6, 2022
d7636fa
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 6, 2022
a5f84df
docs: fixing doctest failures
seanjedi Dec 6, 2022
3306057
docs: fixing some issues in the docstrings checks
seanjedi Dec 6, 2022
e7681ec
docs: adding in some missing docs for docstest check
seanjedi Dec 6, 2022
4b5067d
docs: fixing doctest check failure
seanjedi Dec 6, 2022
0ed0d36
docs: fixing docstring validation check failure
seanjedi Dec 6, 2022
a42438c
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 7, 2022
04d48f2
docs: updating docs according to PR comment
seanjedi Dec 8, 2022
8a32a1c
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 8, 2022
6c0264d
Merge branch 'main' into SEANJEDI-49961_Docs_for_groupby_transform_sh…
seanjedi Dec 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,10 @@ class providing the base-class of operations.
f : function, str
Function to apply to each group. See the Notes section below for requirements.

Can also accept a Numba JIT function with
Accepted inputs are:

- A String
- Numba JIT function with
``engine='numba'`` specified.

If the ``'numba'`` engine is chosen, the function must be
Expand Down