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
I was going through the codebase, and I believe the implementation of add() and iadd() will be similar to concatenate_datasets() after the elimination of code for arguments other than the list of datasets (info, split, axis).
(Assuming elimination of axis means concatenating over axis 1.)
Most data frame libraries (Polars, Pandas, etc.) override __add__ to perform (mathematical) summation, so having different behavior could lead to confusion.
Is your feature request related to a problem? Please describe.
No.
Describe the solution you'd like
I would like to be able to concatenate datasets as follows:
... instead of using
concatenate_datasets()
:Describe alternatives you've considered
Well, I have considered
concatenate_datasets()
😀Additional context
N.a.
The text was updated successfully, but these errors were encountered: