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
Now that polars is out of v0, it would be nice to have some features to stream directly to polars dataframes. Currently it's not difficult to convert the library='np' output to a polars dataframe (pl.DataFrame(ttree.arrays(library='np')) usually does the trick), but it might be interesting to directly read to one, especially in cases where streaming and lazy evaluation become important (large files). Again, this is not a feature I need right now (or have the knowledge to write myself), just might be something to look at in the future.
The text was updated successfully, but these errors were encountered:
I just realized this is very related to #1261, but it could also just be done through the py-polars frontend without any Rust involvement from the uproot side.
Now that polars is out of v0, it would be nice to have some features to stream directly to polars dataframes. Currently it's not difficult to convert the
library='np'
output to a polars dataframe (pl.DataFrame(ttree.arrays(library='np'))
usually does the trick), but it might be interesting to directly read to one, especially in cases where streaming and lazy evaluation become important (large files). Again, this is not a feature I need right now (or have the knowledge to write myself), just might be something to look at in the future.The text was updated successfully, but these errors were encountered: