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

nodejs front-end of polars

Results 23 nodejs-polars issues
Sort by recently updated
recently updated
newest added

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...

good first issue

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

enhancement

Fixing series fold to close #79

bug

Replacing reverse argument with descending to match py-polars and rs-polars

enhancement