The parallelDist package provides a fast parallelized alternative to Râs native âdistâ function to calculate distance matrices for continuous, binary, and multi-dimensional input matrices and offers a broad variety of predefined distance functions from the âstatsâ, âproxyâ and âdtwâ R packages, as well as support for user-defined distance functions written in C++. For ease of use, the âparDistâ function extends the signature of the âdistâ function and uses the same parameter naming conventions as distance methods of existing R packages. Currently 41 different distance methods are supported.
The package is mainly implemented in C++ and leverages the âRcppâ and âRcppParallelâ package to parallelize the distance computations with the help of the âTinyThreadâ library. Furthermore, the Armadillo linear algebra library is used via âRcppArmadilloâ for optimized matrix operations for distance calculations. The curiously recurring template pattern (CRTP) technique is applied to avoid virtual functions, which improves the Dynamic Time Warping calculations while keeping the implementation flexible enough to support different step patterns and normalization methods.
Documentation and Usage ExamplesUsage examples and performance benchmarks can be found in the included vignette.
Details about the 41 supported distance methods and their parameters are described on the help page of the âparDistâ function. The help page can be displayed with the following command:
User-defined distance functionsSince version 0.2.0, parallelDist supports fast parallel distance matrix computations for user-defined distance functions written in C++.
A user-defined function needs to have the following signature (also see the Armadillo documentation):
double customDist(const arma::mat &A, const arma::mat &B)
Defining and compiling the function, as well as creating an external pointer to the user-defined function can easily be achieved with the cppXPtr function of the âRcppXPtrUtilsâ package. The following code shows a full example of defining and using a user-defined euclidean distance function:
# RcppArmadillo is used as dependency
library(RcppArmadillo)
# RcppXPtrUtils is used for simple handling of C++ external pointers
library(RcppXPtrUtils)
# compile user-defined function and return pointer (RcppArmadillo is used as dependency)
euclideanFuncPtr <- cppXPtr("double customDist(const arma::mat &A, const arma::mat &B) { return sqrt(arma::accu(arma::square(A - B))); }",
depends = c("RcppArmadillo"))
# distance matrix for user-defined euclidean distance function
# (note that method is set to "custom")
parDist(matrix(1:16, ncol=2), method="custom", func = euclideanFuncPtr)
More information can be found in the vignette and the help pages.
InstallationparallelDist
is available on CRAN and can be installed with the following command:
install.packages("parallelDist")
The current version from github can be installed using the âdevtoolsâ package:
library(devtools)
install_github("alexeckert/parallelDist")
Alexander Eckert
LicenseGPL (>= 2)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4