-
Notifications
You must be signed in to change notification settings - Fork 412
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
Add ability to build new basic columns #61
Comments
aschonfeld
pushed a commit
that referenced
this issue
Feb 18, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 19, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 20, 2020
Merged
aschonfeld
pushed a commit
that referenced
this issue
Feb 20, 2020
aschonfeld
pushed a commit
that referenced
this issue
Feb 20, 2020
Added in v1.7.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be nice if the menu had a "Build Column" option so that users could quickly & easily modify the underlying data.
The basic idea would be that the 'Build column' interface would prompt users to enter:
The types of columns could be:
Sum
Prompt the user to pick two numeric columns
Difference
Prompt the user to pick two numeric columns
Bins (evenly spaced)
Prompt the user to pick one column.
Additional options: Number of bins, bin labels.
Use pd.cut
Bins (evenly sized)
Prompt the user to pick one column.
Additional options: number of bins, and bin labels)
Use pd.qcut
Datetime property
Prompt the user to pick one datetime column
Additional options: property (one of the Series.dt.__ properties like time, year, month, etc.)
(Maybe?) String function
Prompt the user to pick one string column
Additional options: function (Series.str.__ such as endswith, startswith, len, etc.) and value
And possibly more, will update this over time...
The text was updated successfully, but these errors were encountered: