Mycchaka Kleinbort
Mycchaka Kleinbort
That's interesting - though retrying multiple times sort of defeats the purpose of UV being so fast. I wonder why pip success but UV fails. (Note we do use an...
Can this be closed in light of selectors? ```python cs.by_name('x') | cs.by_dtype(pl.Int64) ```
Interesting, but not strictly true I think. Or at least there is some behaviour that appears as an exception to that rule. ```python df = pl.DataFrame({'x':[1,2], 'y':[3,4]}) df.with_columns(pl.col('x','y').add(1).name.suffix('_incremented')) shape: (2,...
@deanm0000 - does this answer your question? ```python import polars as pl df = pl.DataFrame({'x': [{'x1':'A', 'x2':20}]}) df.schema >>> OrderedDict([('x', Struct({'x1': String, 'x2': Int64}))]) ```
Just to reply to: > What I'm concerned about is the risk that someone does... This is a common situation, and I think we should trust users. It is possible...
Is this equivalent to a fixed integer offset? If so, yes, I'd say this is a little beyond what should be available as core functionality.
The .explode based answer makes perfect sense to me. A row-wise corr of list type columns seems like a bad idea. Mainly because it would require each row to have...
I would appreciate the functionality. In practice I would only use it for troubleshooting/EDA or to display nice data in a GUI setting, so being locale specific is not a...
Shouldn't we be using an array then? Which is polars' fixed length list.
I see. I assumed the arr data type was at least as efficient as a struct. Noted.