Skip to content
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

[ENH] generic select function #1187

Merged
merged 13 commits into from
Nov 8, 2022
6 changes: 4 additions & 2 deletions janitor/functions/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ def select_columns(

Optional ability to invert selection of columns available as well.

!!! Note
!!!note

The preferred option when selecting columns or rows in a Pandas DataFrame
is with `.loc` or `.iloc` methods, as they are generally performant.
`select_columns` is primarily for convenience.
Expand Down Expand Up @@ -79,7 +80,8 @@ def select_rows(

Optional ability to invert selection of rows available as well.

!!! Note
!!!note

The preferred option when selecting columns or rows in a Pandas DataFrame
is with `.loc` or `.iloc` methods, as they are generally performant.
`select_rows` is primarily for convenience.
Expand Down