Julian
Julian
### Description I propose to either - change the `pl.Series` argument order from `name`, `values` to `values`, `name` - make `name` argument explicit/required before the big 1.0 release for the...
### 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. ###...
### Description Noticed this when rewriting a pandas workflow to polars that DataFrame creation was about 20x slower in polars (~4sec) compared to pandas (~0.2sec) I am creating a DataFrame...
### 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. ###...
### 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. ###...
### 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. ###...
A lot of "Data work" these days is done with "DataFrame-libraries" which present data in tabular form which you can print to show the content It **should** look like here...
vs code cannot help installing packages as it used to example: - `uv venv` - create a python notebook `dummy.ipynb` (use the newly created .venv) - run any cell vscode...
### Description When casting from `float` or `str` to `Decimal` without `scale` I see two different behaviours - `float` -> `Decimal`: defaults to `precision=38` & `scale=0` - `str` -> `Decimal`:...
### Description casting from `str` to `Decimal` truncates the data without rounding. Other libraries round here. ```python df = pl.DataFrame({"x": ["0.04", "0.05", "0.06"]}).with_columns( d=pl.col("x").cast(pl.Decimal(scale=1)), ) # shape: (3, 2) #...