logoalt Hacker News

paulfharrisontoday at 8:15 PM2 repliesview on HN

I'm sure Polars is great, but I can't get over needing 10 characters of ceremony every time I want to refer to a column in a data frame.

pl.col("...")


Replies

vovavilitoday at 9:12 PM

Every time:

   import polars as pl
   
   from polars import col, lit
thijsntoday at 8:44 PM

I've seen people with exactly that frustration use "import polars.col as c" and use c("colname") instead!

show 2 replies