Giter VIP home page Giter VIP logo

Comments (5)

sharpe5 avatar sharpe5 commented on July 28, 2024

from dfply.

jankislinger avatar jankislinger commented on July 28, 2024

The only issue I can see is if you use by as list of length 2, e.g. by=['x1', 'x2']. It is not clear whether you want to use x1 from left table and x2 from the right one or both columns from both tables. I would suggest using list for multiple columns and tuple for different names of the same column. The third option is to use dictionary (which is btw the closest to the implementation in dplyr).

List (two columns to join by, same names in bot data frames):

a >> inner_join(b, by=['x1', 'x2'])
a.merge(b, left_on=['x1', 'x2'], right_on=['x1', 'x2'])

Tuple (single column, different names):

a >> inner_join(b, by=('x1', 'x2'))
a.merge(b, left_on='x1', right_on='x2')

from dfply.

sharpe5 avatar sharpe5 commented on July 28, 2024

from dfply.

jankislinger avatar jankislinger commented on July 28, 2024

I agree that by=['x1', 'x2'] should use both columns in both tables. But having to rename column before join is annoying. That's why I would use tuples for that case.

See this commit:
https://github.com/jankislinger/dfply/commit/2d892186eeda4f837e0f46a63ef45434b5c5b502

from dfply.

kieferk avatar kieferk commented on July 28, 2024

Cool thank you. Will merge the PR now.

from dfply.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.