BridgeT {pvar} | R Documentation |
Bridge transformation
Description
Transforms data by Bridge transformation.
Usage
BridgeT(x, normalize = TRUE)
Arguments
x |
x a numeric vector of data values. |
normalize |
|
Details
Let n
denotes the length ox x
.
For each bridge transformations
BridgeT
is defined as
Meanwhile, the transformation with normalization is
Value
A numeric vector.
See Also
Examples
x <- rnorm(1000)
Bx <- BridgeT(x, FALSE)
op <- par(mfrow=c(2,1),mar=c(4,4,2,1))
plot(cumsum(x), type="l")
plot(Bx, type="l")
par(op)
[Package pvar version 2.2.7 Index]