You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It used to mean "merge based on those 3 columns", but now it means "merge based on column1 for left dataframe, and column2 on the right dataframe", which is quite different!
What's the rationale? Is it because we're now supposed to use tuples and not lists in those cases?
Either way, if we decide this is the way forward, it should be a major version change because it breaks one of the major use cases of dfply. What do you think?
The text was updated successfully, but these errors were encountered:
Hi,
The latest modifications to the
join
functions are breaking some usage code.The incriminated changes are: bbe03e8...17b3440
The problem is this case:
df >> left_join(df2, by=["column1", "column2", "column3"])
It used to mean "merge based on those 3 columns", but now it means "merge based on column1 for left dataframe, and column2 on the right dataframe", which is quite different!
What's the rationale? Is it because we're now supposed to use tuples and not lists in those cases?
Either way, if we decide this is the way forward, it should be a major version change because it breaks one of the major use cases of dfply. What do you think?
The text was updated successfully, but these errors were encountered: