r-polars icon indicating copy to clipboard operation
r-polars copied to clipboard

Bring polars to R

Results 83 r-polars issues
Sort by recently updated
recently updated
newest added

One advantage of `LazyFrame` is that the query should be checked before any computation. In the example below, I make a wrong operation by comparing a character column (`tailnum`) to...

upstream

Related to #599, #570, #715 - The conversion to lit currently being processed on the Rust side is defined by a generic function in R. (c.f. https://github.com/pola-rs/polars/blob/740e740d9ce3678ea061d5cb4c2bc94892838383/py-polars/polars/functions/lit.py#L27-L148) - Allows the...

enhancement

I think this document should be a vignette. https://github.com/pola-rs/r-polars/blob/9a09cb48ef38efbfc05cf25ef371856f49d53d2b/R/docs.R

documentation

Like this: https://arrow.apache.org/docs/11.0/r/articles/data_types.html#list-of-default-translations

documentation

I want to read data from pipe is it possible.like this ```R readLines(pipe("echo a,b")) # for example pl$lazy_csv_reader(pipe("echo a,b")) ```

enhancement
help wanted
reader

For now, in `as_polars_lf`, we convert data.frame to RPolarsDataFrame (high cost) and then scan that. Can we scan data.frame directly and do pushing down? I think duckdb does that.

enhancement
reader

Could you advise if the extendr lint is from extendr and there is nothing we could do in this repo to suppress it? also is it ok to have commented...

I definitely may be misunderstanding the code, but in Arrow you could theoretically have an int64 or uint64 index also (i.e., if you're headed from arrow -> Polars, you might...

internals

Related to #497, #732 Currently, several public and private functions can exchange Arrow data, but they are not well documented.

documentation