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

Polars plugin offering eXtra stuff for DateTimes

Results 5 polars-xdt issues
Sort by recently updated
recently updated
newest added

The current version (0.14.12) of polars-xdt seems to be incompatible with polars==0.20.23 The following snippet can be used to replicate the error. ` pl.DataFrame({'d':[datetime.date.today(),datetime.date.today()]}).with_columns(pl.col('d').xdt.offset_by('1bd'))` This raises a `PanicException: not implemented`...

Thanks for the nice package. A minor ask - I was trying to follow the maths w/ [ewma_by_time](https://marcogorelli.github.io/polars-xdt-docs/api/polars_xdt.ewma_by_time.html) and noticed what I think is a minor typo: In docstring: .....

Would it be possible to add a conda-forge feedstock for this repo?

Currently, if there are any NaN values in the value column passed to `xdt.ewma_by_time`, then all following values in the output are NaN (see snippet). It would be great if...

I am attempting to replicate the functionality of relativedelta. The month_delta meets my current purposes but it return incorrect values if passed a date object. This provided incorrect results. I...