-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
DOC: add unqiue value counts example to groupyby guide #37847
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
Conversation
Co-authored-by: Abdulelah Almesfer <28743265+abdulelahsm@users.noreply.github.com> Co-authoerd-by: Abdulellah Alnumay <33042538+Abo7atm@users.noreply.github.com>
Co-authored-by: Abdulelah Almesfer <28743265+abdulelahsm@users.noreply.github.com> Co-authoerd-by: Abdulellah Alnumay <33042538+Abo7atm@users.noreply.github.com>
Co-authored-by: Abdulelah Almesfer <28743265+abdulelahsm@users.noreply.github.com> Co-authoerd-by: Abdulellah Alnumay <33042538+Abo7atm@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Abo7atm
For context, this is a common duplicate on StackOverflow, so I think it's good to include it in the docs.
Did you try building this page of the docs locally? If so, can you post a screenshot of this new section?
Co-authored-by: Marco Gorelli <m.e.gorelli@gmail.com>
Co-authored-by: Marco Gorelli <m.e.gorelli@gmail.com>
@jreback done 👍 |
can you merge master @Abo7atm the precommit checks are failing |
@jreback merged master and ran precommit locally with |
thanks @Abo7atm |
Co-authored-by: Abdulelah Almesfer 28743265+abdulelahsm@users.noreply.github.com
Co-authoerd-by: Abdulellah Alnumay 33042538+Abo7atm@users.noreply.github.com
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Adding an example to the groupby user guide. The example showcases the usage of
nunique
aggregate function. This is from the PyData Global sprint, from this issue. The example is taken from StackOverflow.