diss.PDC {TSclust} | R Documentation |
Permutation Distribution Distance
Description
Computes the Permutation Distribution distance between time series.
Usage
diss.PDC(x, y, ...)
Arguments
x |
Numeric vector containing the first of the two time series. |
y |
Numeric vector containing the second of the two time series. |
... |
Additional parameters for the function. See |
Details
This is basically a wrapper for pdcDist
of the pdc
package, intended for an easier discovery of the functionalities used in TSclust.
Value
The computed distance.
See Also
diss
, link[pdc]{pdcDist}
Examples
## Create three sample time series
x <- cumsum(rnorm(100))
y <- cumsum(rnorm(100))
diss.PDC(x, y)
[Package TSclust version 1.3.1 Index]