semantique.processor.operators.floor_

Contents

semantique.processor.operators.floor_#

semantique.processor.operators.floor_(x, track_types=True, **kwargs)[source]#

Compute the floor of x.

The floor is the largest integer i such that i <= x.

Parameters:
  • x (xarray.DataArray) – Array containing the values to apply the operator to.

  • track_types (bool) – Should the operator promote the value type of the output object, based on the value type of the input object?

  • **kwargs – Ignored.

Returns:

xarray.DataArray – An array with the same shape as x containing the results of all evaluated expressions.

Note

When tracking value types, this operator uses the following type promotion manual, with the keys being the supported value types of x, and the corresponding value being the promoted value type of the output.

{'continuous': 'discrete', 'discrete': 'discrete'}