Column.floor
floor
Group: Rounding
Documentation
Computes the nearest integer below this number for values in a numeric column. Returns a column of Integer
.
Examples
Take the floor of a column of Float
values.
Column.from_vector "foo" [1.25, 2.33, 3.57] . floor == (Column.from_vector "foo" [1, 2, 3])