wdist | R Documentation |
Compute dissimilarity between two wavelet spectra
wdist(wt1, wt2, cutoff = 0.99)
wt1 |
|
wt2 |
|
cutoff |
Cutoff value used to compute dissimilarity. Only orthogonal
axes that contribute more than |
Returns wavelet dissimilarity.
Tarik C. Gouhier (tarik.gouhier@gmail.com)
Rouyer, T., J. M. Fromentin, F. Menard, B. Cazelles, K. Briand, R. Pianet, B. Planque, and N. C. Stenseth. 2008. Complex interplays among population dynamics, environmental forcing, and exploitation in fisheries. Proceedings of the National Academy of Sciences 105:5420-5425.
Rouyer, T., J. M. Fromentin, N. C. Stenseth, and B. Cazelles. 2008. Analysing multiple time series and extending significance testing in wavelet analysis. Marine Ecology Progress Series 359:11-23.
t1 <- cbind(1:100, sin(seq(0, 10 * 2 * pi, length.out = 100)))
t2 <- cbind(1:100, sin(seq(0, 10 * 2 * pi, length.out = 100) + 0.1 * pi))
# Compute wavelet spectra
wt.t1 <- wt(t1)
wt.t2 <- wt(t2)
# Compute dissimilarity
wdist(wt.t1$wave, wt.t2$wave)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.