-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Should pl.concat()
accept Expr
input?
#19813
Comments
No, it's not meant for expressions. I also don't think it should document what it does not support. It should document what it does. The docs seem pretty clear in that regard. |
Does it seem that the process is actually taking place at this location? polars/py-polars/polars/functions/eager.py Lines 252 to 253 in 9ceedde
|
That was added in #3541 |
Ah, my bad. Then it should. :) |
Can the docstring be updated? |
Checks
Reproducible example
Log output
No response
Issue description
Might simply be a documentation issue, but it's unclear to me whether
Expr
should be accepted input inpl.concat()
. The docs ofitems
say:They also don't mention the fact that when the inputs are
Expr
,how
can take any value, even"foo"
as in the example above.Expected behavior
Either an update in the docs saying that
Expr
are accepted and that in this casehow
doesn't matter, or forbiddingExpr
as input.Installed versions
The text was updated successfully, but these errors were encountered: