nodejs-polars
nodejs-polars copied to clipboard
nodejs front-end of polars
This is less a feature request than a question: + I cannot reproduce the dataframe display shown in README (and below) - which is the same as in python-polars. Is...
TLDR: Solves https://github.com/pola-rs/nodejs-polars/issues/109 More or less the IPC Stream methods are straight copies of the IPC File (Feather) ones, swapping out the IpcReader, IpcWriter for their streaming equivalents; the API...
I also added `streamable` to `LazyFrame.unpivot`, though I haven't looked into it what it really does and don't know how to test it. `DataFrame.unpivot` doesn't seem to have the `streamable`...
#### Describe your feature request It'd be nice if we could zero-copy to/from [apache arrow](https://www.npmjs.com/package/apache-arrow) tables. ```ts arrowTable = df.toArrow(); df = pl.fromArrow(arrowTable); arrowVector = series.toArrow(); series = Series.fromArrow(arrowVector) ```
GPU support is now in open beta for the python frontend https://docs.pola.rs/user-guide/gpu-support/ Any plans to add GPU support for the nodejs frontend?
Upgrading biome to latest Sorting imports as suggested by biome Adding `node:` prefix to imports as suggested by biome
Replacing reverse argument with descending to match py-polars and rs-polars