8000 ENH: add percentage threshold to dropna by erfannariman · Pull Request #35300 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

ENH: add percentage threshold to dropna #35300

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

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
35299 - fixed docstring
  • Loading branch information
erfannariman committed Jul 15, 2020
commit 388635454c163113a104fc63aad846efca06a495
4 changes: 2 additions & 2 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4901,8 +4901,8 @@ def dropna(
thresh : int, optional
Require that many non-NA values.
perc : float, optional
If a column or row exceeds this percentage threshold NA-values
it will be dropped
If a column or row exceeds this percentage threshold of
NA-values, it will be dropped.
subset : array-like, optional
Labels along other axis to consider, e.g. if you are dropping rows
these would be a list of columns to include.
Expand Down
0