You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #132, we'll have a nice interface for computing any multiscale entropy or complexity measure of a timeseries x, as long as a relevant MultiScaleAlgorithm and corresponding downsample method is defined.
However, we haven't yet implemented methods for multivariate input. This is used for example in Morabito et al. (2012), where the compute the multivariate multiscale permutation entropy.
If possible, sketch out an implementation strategy
Implementing this is probably straight-forward. We just need to define downsample(::MultiScaleAlgorithm, x::AbstractDataset).
I'm just submitting this issue to remember actually doing so.
Cite scientific papers related to the feature/algorithm
Morabito, F. C., Labate, D., Foresta, F. L., Bramanti, A., Morabito, G., & Palamara, I. (2012). Multivariate multi-scale permutation entropy for complexity analysis of Alzheimer’s disease EEG. Entropy, 14(7), 1186-1202.
The text was updated successfully, but these errors were encountered:
Reminder: we have two existing signature for probabilities(x::AbstractVector, est::SymbolicPermutation) and probabilities(x::AbstractDataset, est::SymbolicPermutation). The multivariate permutation approach (ignored the multi-scale aspect for now) conflicts with the latter. We need to decide on what to do about that. Perhaps it is best to replace the latter method with one that interprets each column of x as a timeseries, rather than interpreting the rows of x as pre-embedded state vectors to be symbolized.
Describe the feature you'd like to have
With #132, we'll have a nice interface for computing any multiscale entropy or complexity measure of a timeseries
x
, as long as a relevantMultiScaleAlgorithm
and correspondingdownsample
method is defined.However, we haven't yet implemented methods for multivariate input. This is used for example in Morabito et al. (2012), where the compute the multivariate multiscale permutation entropy.
If possible, sketch out an implementation strategy
Implementing this is probably straight-forward. We just need to define
downsample(::MultiScaleAlgorithm, x::AbstractDataset)
.I'm just submitting this issue to remember actually doing so.
Cite scientific papers related to the feature/algorithm
Morabito, F. C., Labate, D., Foresta, F. L., Bramanti, A., Morabito, G., & Palamara, I. (2012). Multivariate multi-scale permutation entropy for complexity analysis of Alzheimer’s disease EEG. Entropy, 14(7), 1186-1202.
The text was updated successfully, but these errors were encountered: