-
Notifications
You must be signed in to change notification settings - Fork 414
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
Join instances #261
Comments
for fuzzy join |
To Show df3.shape before join
|
For Multiple column Join we can make a new column with concat of all the columns and just join based on the new column |
added in v1.35.0 See demo here |
AnthraX1
added a commit
to AnthraX1/dtale
that referenced
this issue
Feb 27, 2021
* man-group#261: Merging/Stacking UI * bumped version numbers 1.35.0 * Fix missing single quote in dependencies string # Fixes: ``` Resolving dependencies... (0.2s)<debug>PackageInfo:</debug> Invalid constraint (scikit-learn (>='0.21.0)) found in dtale-1.34.0 dependencies, skipping ``` * change global_stage into interfaces * man-group#430: replace empty strings with nans when converting dates to timestamp floats * man-group#431: fixed stacking code example * fixed formatting and some updates * man-group#432: updated calls to "get_instance" in merge code snippets * man-group#433: fixed exception message display in merge UI * fix format and lint * Update dtale/global_state.py Co-authored-by: Andrew Schonfeld <andrew.schonfeld1@gmail.com> * format * man-group#434: Additional PPS formatting * add view data by name * fix tests * fix dash path and revert json_timestamp * fix test_get_pps_matrix * fixed recursion error in redis global state * fixes for python2.7 test failures Co-authored-by: Andrew Schonfeld <andrew.schonfeld1@gmail.com> Co-authored-by: Riley Shea <rileymshea@gmail.com> Co-authored-by: Anthr@X <anthrax1@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be helpful to have Join two or multiple instances. My suggestion:
For example there is df1 and df2
df1.shape == (100,3)
df2.shape== (30,5)
df1.A <---- join to ---> df2.B ==> results as df3
before apply join shows
Joining options:
** based on index
** based on left and right columns
** based on fuzzy match for example match: foo < --> Foo or boo or FOO or foo.
The text was updated successfully, but these errors were encountered: