pyarrow.compute.SkewOptions#
- classpyarrow.compute.SkewOptions(*,skip_nulls=True,biased=True,min_count=0)#
Bases:
_SkewOptionsOptions for theskew andkurtosis 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.
- biasedbool, default
True Whether the calculated value is biased.If False, the value computed includes a correction factor to reduce bias.
- min_count
int, default 0 Minimum number of non-null values in the input. If the numberof non-null values is belowmin_count, the output is null.
- skip_nullsbool, default
Methods
__init__(self, *[, skip_nulls, biased, ...])deserialize(buf)Deserialize options for a function.
serialize(self)- staticdeserialize(buf)#
Deserialize options for a function.
- Parameters:
- buf
Buffer The buffer containing the data to deserialize.
- buf
- serialize(self)#
On this page

