We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46021d commit ee0ee0fCopy full SHA for ee0ee0f
bigframes/pandas/core/methods/describe.py
@@ -17,7 +17,6 @@
17
import typing
18
19
import pandas as pd
20
-import pyarrow as pa
21
22
from bigframes import dataframe, dtypes, series
23
from bigframes.core import agg_expressions, blocks
@@ -122,11 +121,6 @@ def _get_aggs_for_dtype(dtype) -> list[aggregations.UnaryAggregateOp]:
122
121
dtypes.is_string_like(dtype)
123
or dtypes.is_binary_like(dtype)
124
or dtypes.is_time_like(dtype)
125
- or (
126
- isinstance(dtype, pd.ArrowDtype)
127
- and pa.types.is_struct(dtype.pyarrow_dtype)
128
- and not dtypes.contains_db_dtypes_json_dtype(dtype)
129
- )
130
):
131
return [aggregations.count_op, aggregations.nunique_op]
132
else:
0 commit comments