pandas.api.extensions.ExtensionArray._reduce#
- ExtensionArray._reduce(name, *, skipna=True, **kwargs)[source]#
- Return a scalar result of performing the reduction operation. - Parameters
- namestr
- Name of the function, supported values are: { any, all, min, max, sum, mean, median, prod, std, var, sem, kurt, skew }. 
- skipnabool, default True
- If True, skip NaN values. 
- **kwargs
- Additional keyword arguments passed to the reduction function. Currently, ddof is the only supported kwarg. 
 
- Returns
- scalar
 
- Raises
- TypeErrorsubclass does not define reductions