Код: Выделить всё
shape: (3, 2)
┌─────┬────────────┐
│ a ┆ b │
│ --- ┆ --- │
│ i64 ┆ list[str] │
╞═════╪════════════╡
│ 1 ┆ ["a", "b"] │
│ 2 ┆ ["a"] │
│ 3 ┆ ["c", "d"] │
└─────┴────────────┘
Код: Выделить всё
df = pl.DataFrame({'a':[1,2,3], 'b':[['a','b'],['a'],['c','d']]})
df.with_column(pl.col('tags').cast(pl.list(pl.Categorical)))
Код: Выделить всё
ValueError: could not convert value 'Unknown' as a Literal
Подробнее здесь: https://stackoverflow.com/questions/753 ... tegoricals
Мобильная версия