pyarrow.compute.ElementWiseAggregateOptions#

class pyarrow.compute.ElementWiseAggregateOptions(*, skip_nulls=True)#

Bases: _ElementWiseAggregateOptions

Options for element-wise aggregate functions.

Parameters:
skip_nullsbool, default True

Whether to skip (ignore) nulls in the input. If False, any null in the input forces the output to null.

__init__(self, *, skip_nulls=True)#

Methods

__init__(self, *[, skip_nulls])

deserialize(buf)

Deserialize options for a function.

serialize(self)

static deserialize(buf)#

Deserialize options for a function.

Parameters:
bufBuffer

The buffer containing the data to deserialize.

serialize(self)#