-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bb3f0a
commit 97cb334
Showing
12 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,11 @@ Type: Package | |
Title: Permutation Distribution Clustering | ||
Version: 1.0.4 | ||
Date: 2020-02-02 | ||
Author: Andreas M. Brandmaier [aut, cre] | ||
Authors@R: c(person("Andreas M. Brandmaier", | ||
email="[email protected]", | ||
role=c("aut","cre"), | ||
comment = c(ORCID = "0000-0001-8765-6982"))) | ||
Maintainer: Andreas M. Brandmaier <[email protected].de> | ||
Maintainer: Andreas M. Brandmaier <andy@brandmaier.de> | ||
Description: Permutation Distribution Clustering is a clustering method for time series. Dissimilarity of time series is formalized as the divergence between their permutation distributions. The permutation distribution was proposed as measure of the complexity of a time series. | ||
License: GPL-3 | ||
Imports: stats, | ||
|
@@ -21,4 +20,5 @@ Suggests: | |
knitr, | ||
rmarkdown | ||
VignetteBuilder: knitr | ||
URL: http://brandmaier.github.io/pdc, https://github.com/brandmaier/pdc | ||
URL: https://brandmaier.github.io/pdc/, https://github.com/brandmaier/pdc | ||
RoxygenNote: 7.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
codebook.entropy <- | ||
function(data, m, t) | ||
function(data, m, t, normalize_by_observed=FALSE) | ||
{ | ||
|
||
ent <- entropy(codebook(data,m, t)) | ||
ent <- entropy(codebook(data, m, t),normalize_by_observed=normalize_by_observed) | ||
|
||
return( ent); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
paired.tseries Demonstrate clustering of pairs of time series |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters