cf.Index.floor¶
-
Index.
floor
(*args, **kwargs)[source]¶ Floor the data array, element-wise.
The floor of
x
is the largest integern
, such thatn<=x
.New in version 1.0.
- Parameters
- Returns
Examples
>>> print(f.array) [-1.9 -1.5 -1.1 -1. 0. 1. 1.1 1.5 1.9] >>> print(f.floor().array) [-2. -2. -2. -1. 0. 1. 1. 1. 1.] >>> f.floor(inplace=True) >>> print(f.array) [-2. -2. -2. -1. 0. 1. 1. 1. 1.]