pow
pow(base: numeric, exponent: numeric) -> float64
Returns a number 'base' raised to the specified power 'exponent'.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col power:pow(@.x, @.y)
Create a column 'power' with the result of column 'base' to the power of column 'exponent'
Updated 8 days ago