shiftRightUnsigned {SparkR}R Documentation

shiftRightUnsigned

Description

Unsigned shift the given value numBits right. If the given value is a long value, it will return a long value else it will return an integer value.

Usage

shiftRightUnsigned(y, x)

## S4 method for signature 'Column,numeric'
shiftRightUnsigned(y, x)

Arguments

y

column to compute on.

x

number of bits to shift.

Note

shiftRightUnsigned since 1.5.0

See Also

Other math_funcs: acos, asin, atan2, atan, bin, bround, cbrt, ceil, conv, corr, cosh, cos, covar_pop, cov, expm1, exp, factorial, floor, hex, hypot, log10, log1p, log2, log, pmod, rint, round, shiftLeft, shiftRight, signum, sinh, sin, sqrt, tanh, tan, toDegrees, toRadians, unhex

Examples

## Not run: shiftRightUnsigned(df$c, 1)

[Package SparkR version 2.2.1 Index]