-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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(rust): Add example of list creation in user guide #20854
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 #20854 +/- ##
==========================================
- Coverage 79.64% 79.63% -0.01%
==========================================
Files 1571 1567 -4
Lines 223156 223044 -112
Branches 2546 2554 +8
==========================================
- Hits 177731 177627 -104
+ Misses 44841 44832 -9
- Partials 584 585 +1 ☔ View full report in Codecov by Sentry. |
use chrono::prelude::*; | ||
use polars::prelude::*; | ||
let df = DataFrame::new(vec![ | ||
Series::from_any_values( |
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'm not really sure what the preferred or recommended way is to create Lists and Arrays in rust. I found the get_list_builder
function but I went with this approach since it's not as busy. Is there an easier way?
No description provided.