TSclust (version 1.2.4)

diss.PDC: 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 link[pdc]{pdcDist}.

Value

The computed distance.

Details

This is basically a wrapper for pdcDist of the pdc package, intended for an easier discovery of the functionalities used in TSclust.

See Also

diss, link[pdc]{pdcDist}

Examples

Run this code
# NOT RUN {
## Create three sample time series
x <- cumsum(rnorm(100))
y <- cumsum(rnorm(100))
diss.PDC(x, y)

# }

Run the code above in your browser using DataCamp Workspace