您可能已经从我的其他问题中意识到,我现在正在从 pandas 过渡到 polars。我有一个 polars df,其中包含不同的嵌套列表,如下所示:
┌────────────────────────────────────┬────────────────────────────────────┬─────────────────┬──────┐
│ col1 ┆ col2 ┆ col3 ┆ col4 │
│ --- ┆ --- ┆ --- ┆ --- │
│ list[list[str]] ┆ list[list[str]] ┆ list[str] ┆ str │
╞════════════════════════════════════╪════════════════════════════════════╪═════════════════╪══════╡
│ [["a", "a"], ["b", "b"], ["c", "c"]┆ [["a", "a"], ["b", "b"], ["c", "c"]┆ ["A", "B", "C"] ┆ 1 │
│ [["a", "a"]] ┆ [["a", "a"]] ┆ ["A"] ┆ 2 │
│ [["b", "b"], ["c", "c"]] ┆ [["b", "b"], ["c", "c"]] ┆ ["B", "C"] ┆ 3 │
└────────────────────────────────────┴────────────────────────────────────┴─────────────────┴──────┘
现在我想使用不同的分隔符将列表内外连接起来以达到此目的:
┌─────────────┬─────────────┬───────┬──────┐
│ col1 ┆ col2 ┆ col3 ┆ col4 │
│ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ str ┆ str ┆ str │
╞═════════════╪═════════════╪═══════╪══════╡
│ a+a-b+b-c+c ┆ a+a-b+b-c+c ┆ A-B-C ┆ 1 │
│ a+a ┆ a+a ┆ A ┆ 2 │
│ b+b-c+c ┆ b+b-c+c ┆ B-C ┆ 3 │
└─────────────┴─────────────┴───────┴──────┘
我通过使用map_elements
for 循环来实现这一点,但我认为这是非常低效的。有没有一种 polars 原生方法来管理这个?
这是我的代码:
import polars as pl
df = pl.DataFrame({"col1": [[["a", "a"], ["b", "b"], ["c", "c"]], [["a", "a"]], [["b", "b"], ["c", "c"]]],
"col2": [[["a", "a"], ["b", "b"], ["c", "c"]], [["a", "a"]], [["b", "b"], ["c", "c"]]],
"col3": [["A", "B", "C"], ["A"], ["B", "C"]],
"col4": ["1", "2", "3"]})
nested_list_cols = ["col1", "col2"]
list_cols = ["col3"]
for col in nested_list_cols:
df = df.with_columns(pl.lit(df[col].map_elements(lambda listed: ['+'.join(element) for element in listed], return_dtype=pl.List(pl.String))).alias(col)) # is the return_dtype always pl.List(pl.String)?
for col in list_cols + nested_list_cols:
df = df.with_columns(pl.lit(df[col].list.join(separator='-')).alias(col))