thebhsu

Results 1 issues of thebhsu

Following up on https://github.com/vaexio/vaex/issues/2087#issuecomment-1163799755, the`vaex.dataframe.DataFrameLocal.describe()` method does not work for list types. Seems those types are not included in `map_arrow_to_numpy`. ```python data = {"A": [1], "B": pa.array([["a", "b", "c"]])} df...