pyarrow data types for columns that have lists of dictionaries?
问题 Is there a special pyarrow data type I should use for columns which have lists of dictionaries when I save to a parquet file? If I save lists or lists of dictionaries as a string, I normally have to .apply(eval) the field if I read it into memory again in order for pandas to recognize the data as a list (so I can normalize it with pd.json_normalize ) column_a: [ {"id": "something", "value": "else"}, {"id": "something2", "value": "else2"}, ] column_b: ["test", "test2", "test3"] Just wondering