Learn R Programming

mlmts (version 1.1.2)

dis_dtw_1: Constructs a pairwise distance matrix based on multivariate dynamic time warping

Description

dis_dtw_1 returns a pairwise distance matrix based on one of the multivariate extensions of the well-known dynamic time warping distance shokoohi2017generalizingmlmts.

Usage

dis_dtw_1(X, normalization = FALSE, ...)

Value

The computed pairwise distance matrix.

Arguments

X

A list of MTS (numerical matrices).

normalization

Logical. If normalization = TRUE (default), the normalized distance is computed. Otherwise (default), no normalization is taken into account

...

Additional parameters for the function. See dtw.

Author

Ángel López-Oriona, José A. Vilar

Details

Given a collection of MTS, the function returns the pairwise distance matrix, where the distance between two MTS is defined as the sum of the standard dynamic time warping distances between each corresponding pair of dimensions (univariate time series)

References

shokoohi2017generalizingmlmts

See Also

dis_dtw_2, dis_mahalanobis_dtw

Examples

Run this code
toy_dataset <- AtrialFibrillation$data[1 : 5] # Selecting the first 5 MTS from the
# dataset AtrialFibrillation
distance_matrix <- dis_dtw_1(toy_dataset) # Computing the pairwise
# distance matrix based on the distance dis_dtw_1 without normalization
distance_matrix_normalized <- dis_dtw_1(toy_dataset, normalization = TRUE)
# Computing the pairwise distance matrix based
# on the distance dis_dtw_1 with normalization

Run the code above in your browser using DataLab