r-polars
r-polars copied to clipboard
Bring polars to R
`map_elements` crash for `struct` object, Here is the `map_elements` document for struct in Python: https://docs.pola.rs/user-guide/expressions/user-defined-functions/#combining-multiple-column-values ```r library(polars) pl$DataFrame(mtcars)$ select(pl$col("mpg", "cyl")$to_struct()$map_elements(\(x) x$mpg)) pl$DataFrame(mtcars)$ select(pl$col("mpg", "cyl")$to_struct()$map_elements(\(x) x[["mpg"]])) pl$DataFrame(mtcars)$ select( pl$col("mpg", "cyl")$to_struct()$ map_elements(\(x)...
There seems to be an issue locating files when the filepath/source contains a tilde (e.g. `"~/Desktop/some_file.csv"`). This is a common pattern for macOS users. Any ideas what might be causing...
Close #1011 Breaking so should be in 0.17.0
First of all, thank you very much for this great R Polars project. I would like to implement a db connection rust binding R package and convert data to polars...
Same as pola-rs/polars#16059
It seems to take 100 times longer than the conversion from `arrow::Table`. Could `arrow` be using ALTREP to make the materialization later? Details ``` r library(polars) library(arrow, warn.conflicts = FALSE)...