Romano Vacca
Romano Vacca
### Problem Description Would it be a good idea to change the name of the function to "show_execution_plan"/"show_execution_graph". I feel as if the current function name is a bit ambiguous...
Added a basic example for read_csv, will do the same for the other I/O types, based on the order in the API reference documentation. Will make 1 commit per I/O...
@stinodego I have added this example, but I feel like the current setup of methods (where we have 2 lookalike functions) is a bit confusing and error prone. ``` Expr.dt.microsecond()...
### Problem description A couple functions are called similar, while having different behaviour e.g. `Expr.dt.microsecond()` and `Expr.dt.microseconds()`. These functionality of these could be unified. See [#6413 ](https://github.com/pola-rs/polars/pull/6413) for more information
fix #10075 When looking at this issue, I thought of a couple ways we could handle this: * **Return an empty DataFrame**: This could make sense if you interpret the...
as discussed in #9966, implemented `mean_horizontal`. If this is the way to go, I will create separate PR's for others.
fix #13066 in `fn parse_csv()`, we use `get_projection()`, which uses the projection that contains the correct columns and order. That function mentions: `we also need to sort the projection to...
fix #12956 I mimicked the implementation of `.unique()` on ObjectChunked objects to generate the error in the same way. This lead to a lot of changes and unwraps, since sort...
Partially resolves #12876. It adds a `use_glob` flag for `read_parquet` as mentioned in the issue. This issue does NOT address the recursion problem mentioned in the issue. Do we want...
Created this issue based on [#1454](https://github.com/Azure/bicep/issues/1454). What Im trying to do is within the same deployment, create a resource groupby using a module and then create other resources. When doing...