PolarsのStruct型
複数のカラムをまとめて操作するためのデータ型
https://docs.pola.rs/user-guide/expressions/structs/
https://docs.pola.rs/api/python/stable/reference/expressions/struct.html#struct
pl.value_counts()
p.unnest()
これとかは使いそう
code:py
out = ratings.filter(pl.struct("Movie", "Theatre").is_duplicated())
print(out)