root {transx} | R Documentation |
nth Root Transformation
Description
-
root
: nth root -
root_sqrt
: square root -
root_cubic
: cubic root
Usage
root(x, root = NULL, modulus = FALSE)
root_sq(x, ...)
root_cubic(x, ...)
Arguments
x |
Univariate vector, numeric or ts object with only one dimension. |
root |
The nth root. |
modulus |
Transformation will work for data with both positive and negative |
... |
Further arguments passed to |
Examples
root(4, 2)
root(-4, 2)
root(-4, 2, TRUE)
[Package transx version 0.0.1 Index]