jicart
jicart
Oh, I tried a bunch of stuff, but I did not think of that. Makes sense since it's a list of lists, so I need to tell polars the inner...
I'm having the same problem. I've turned off the locale change as a workaround, but I'm wondering if there might be a fix for it. This is the code I've...
It would be nice to have a better error message for this bug. I'm kind of ashamed to admit it, but I've spent about 20 min trying to debug this...
As a workaround, I am using this code to read a fixed-width file. It's more than twice as fast as pandas' "read_fwf" for me when reading large files. ``` df...
> This will probably perform faster: Very nice! Opening a 500MiB text file: pandas' read_fwf: ~48 secs my code: ~24 secs your code: ~5.5 secs