Column.ceil
ceil
Group: Rounding
Documentation
Computes the nearest integer above this number for values in a numeric
column.
Returns a column of Integer.
Examples
Take the ceiling of a column of Float values.
Column.from_vector "foo" [1.25, 2.33, 3.57] . ceil == (Column.from_vector "foo" [2, 3, 4])
Remarks
NaN/Inf
If a NaN or Inf value is passed to ceil, it immediately returns the
same value.