-
-
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
docs: Add example and tests for pl.concat()
with Expr
input
#19836
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #19836 +/- ##
=======================================
Coverage 79.33% 79.33%
=======================================
Files 1548 1548
Lines 214245 214245
Branches 2460 2460
=======================================
+ Hits 169968 169974 +6
+ Misses 43719 43713 -6
Partials 558 558 ☔ View full report in Codecov by Sentry. |
py-polars/polars/functions/eager.py
Outdated
how : {'vertical', 'vertical_relaxed', 'diagonal', 'diagonal_relaxed', 'horizontal', 'align'} | ||
Series only support the `vertical` strategy. | ||
This is not used when items are Expr. Series only support the `vertical` strategy. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think vertical
should be checked for Expr as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not used when items are Expr. Series only support the `vertical` strategy. | |
Series and Expr only support the `vertical` strategy. |
Test failures only appear with the new streaming engine but I have no idea why. Should I remove the new test? |
Fixes #19813