Clip (limit) the values in an array to any value that fits in 64 floating point range. Only works for the following dtypes: {Int32, Int64, Float32, Float64, UInt32}. If you want to clip other dtypes, consider writing a when -> then -> otherwise expression
Minimum value
Maximum value
Floor underlying floating point array to the lowest integers smaller or equal to the float value. Only works on floating point Series
Round underlying floating point data by decimals
digits.
Similar functionality to javascript toFixed
number of decimals to round by.
Optional
mode: RoundModeRounding mode, the default is "half to even" (also known as "bankers' rounding"). RoundMode. * halftoeven round to the nearest even number * halfawayfromzero round to the nearest number away from zero
Ceil underlying floating point array to the highest integers smaller or equal to the float value. Only works on floating point Series