arrow.quantile_options

Module for [QuantileOptions] class

Types 3

Methods
GType _gType() @property
QuantileOptions self()Returns `this`, for use in `with` statements.
QuantileOptionsGidBuilder builder()Get builder for [arrow.quantile_options.QuantileOptions] Returns: New builder object
arrow.types.QuantileInterpolation interpolation() @propertyGet `interpolation` property. Returns: Interpolation method to use when quantile lies between two data points.
void interpolation(arrow.types.QuantileInterpolation propval) @propertySet `interpolation` property. Params: propval = Interpolation method to use when quantile lies between two data points.
uint minCount() @propertyGet `minCount` property. Returns: If less than this many non-null values are observed, emit null.
void minCount(uint propval) @propertySet `minCount` property. Params: propval = If less than this many non-null values are observed, emit null.
bool skipNulls() @propertyGet `skipNulls` property. Returns: If true (the default), null values are ignored. Otherwise, if any value is null, emit null.
void skipNulls(bool propval) @propertySet `skipNulls` property. Params: propval = If true (the default), null values are ignored. Otherwise, if any value is null, emit null.
double[] getQs()
void setQ(double q)
void setQs(double[] qs)
Constructors
this(void * ptr, Flag!"Take" take)
Methods
T interpolation(arrow.types.QuantileInterpolation propval)Set `interpolation` property. Params: propval = Interpolation method to use when quantile lies between two data points. Returns: Builder instance for fluent chaining
T minCount(uint propval)Set `minCount` property. Params: propval = If less than this many non-null values are observed, emit null. Returns: Builder instance for fluent chaining
T skipNulls(bool propval)Set `skipNulls` property. Params: propval = If true (the default), null values are ignored. Otherwise, if any value is null, emit null. Returns: Builder instance for fluent chaining

Fluent builder for [arrow.quantile_options.QuantileOptions]