deanm0000

Results 41 issues of deanm0000

I can access my container via :5050 but when I setup a reverse proxy with nginx it breaks as it tries to go to (for example) myhost.com/login since I only...

Edit by dcooley: Until a fix is found, the current working solution to this appears to be downgrading to at the latests R 4.1.3 --- **Describe the bug** Using the...

### Problem description Let's say you start with a list of dataframs such as ```Ldfs=[ pl.DataFrame({'a':[1.0,2.0,3.1], 'b':[2,3,4]}), pl.DataFrame({'b':[1,2,3], 'c':[2,3,4]}), pl.DataFrame({'a':[1,2,3], 'c':[2,3,4]}) ] ``` We can't concat this into one because...

enhancement

### Problem description I would like it if there were a filesystem option in the read functions. This is to be consistent with how pyarrow's read_table function works but also...

enhancement

### Problem description Let's say you have ``` df1 = pl.DataFrame({ "a": [1, 2, 3, 4, 5, 6, 7] }) df2 = pl.DataFrame({ "a": [1, 3, 5, 7], "b": [1,...

enhancement

### Checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pypi.org/project/polars/) of Polars. ###...

bug
python
enhancement
P-medium

### Description `pl.Expr.count` was recently changed to not count nulls but `pl.Expr.cum_count` wasn't also changed. If `pl.Expr.cum_count` is changed to not count nulls then it would be nice to have...

bug
python
enhancement
accepted

fixes https://github.com/pola-rs/polars/issues/11957 This adds named arguments to group_by. One thing I noticed was that in eager mode there are some checks to enforce a rule that there can't be any...

python
enhancement
fix

I struggled a bit figuring out my ruff linter so here's the solution that I found for the next person.

documentation
python

scipy.special is (almost) all ufuncs so I provided a link there. numba creates ufuncs so I provided a link to its page and an example thereof. Lastly, added a note...

documentation
python