pub type Float64Chunked = ChunkedArray<Float64Type>;

Trait Implementations

The resulting type after applying the & operator.

Performs the & operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values. Read more

Returns the mean value in the array. Returns None if the array is empty or only contains null values. Read more

Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

Returned a sorted ChunkedArray.

Retrieve the indexes needed to sort this array.

Get unique values of a ChunkedArray

Get first index of the unique values in a ChunkedArray. This Vec is sorted. Read more

Get a mask of all the unique values.

Get a mask of all the duplicated values.

Number of unique values in the ChunkedArray

Available on crate feature mode only.

The most occurring value(s). Can return multiple Values

Compute the variance of this ChunkedArray/Series.

Compute the standard deviation of this ChunkedArray/Series.

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.

Get the quantile of the ChunkedArray as a new Series of length 1.

Get the median of the ChunkedArray as a new Series of length 1.

Get the variance of the ChunkedArray as a new Series of length 1.

Get the standard deviation of the ChunkedArray as a new Series of length 1.

Compute the hash for all values in the array. Read more