Darek
Darek
`bun run test --findRelatedTests __tests__/dataframe.test.ts` are passing on my laptop on this branch.
@roll fix or nix? Thx
> @Bidek56 Please take a look: > > * I had to skip the `upsample` test as it fails for me both on main/pr (not sure how CI passes on...
> I cannot reproduce the dataframe display shown in README (and below) - which is the same as in python-polars. Is it still possible ? else why not ? It...
I am not using `Deno` but using `bun` command line it works fine.
Can you please use: `console.log(df);` in `bun repl`? It works fine for me. I do re-call being an issue with bun implementation for `[Symbol.for("nodejs.util.inspect.custom")]()`. ``` > console.log(df); shape: (5, 4)...
@roll Do you mind putting a PR for it? I see a lot of references to duration in Python Polars and not sure which feature we need to add. Thx
I made good progress on adding Duration data type, but since JS does not have a duration data type, not sure how to proceed. Python has `timedelta` and there is...
Maybe we do not need `Temporal.Duration` since we are already constructing `Duration` type. Enhancing the `Duration` type to include all the attributes maybe sufficient.
I have a WIP [branch](https://github.com/Bidek56/nodejs-polars/tree/add-duration) for duration type, but tests are failing. Need to figure out why.