Open machow opened 10 months ago
Note that List columns can have a schema like List[List[int]]
, so we need some approach that can handle lists of lists (of lists) etc.. It appears that structs are straightforward to coerce (although a struct can have a list in it).
Is there a good polars approach for casting List[List[int]] -> String
?
Polars supports nested data---such as lists and structs---in columns of data.
Here's an example from the polars guide
Note that each entry in the gender column is a list of strings. However, I don't think Great Tables is set up to handle this situation.
Current Behavior