arrow.quantile_options

Module for [QuantileOptions] class

Types 3

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

Fluent builder implementation template for arrow.quantile_options.QuantileOptions

Methods
T interpolation(arrow.types.QuantileInterpolation propval) nothrowSet `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) nothrowSet `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) nothrowSet `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
Methods
QuantileOptions build() nothrowCreate object from builder. Returns: New object