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
There is a numeric series of temporal data, for example, temperature.
We need to get information about what cycles the series has (at what amplitude, at what period and so on). One possible method of doing this is Empirical Mode Decomposition, a.k.a. Huang transform, which has positive practical feedbacks (and not very clear theoretical basis, although). And has some advantages over classical methods like Fourier-decomposition.
We can add a scope for time series analysis that would include additional tools to work directly on Buffers so it would be easy to integrate everything with existing libraries.
I will have some questions though. For example, do we need missing value functionality for time series? We have an effective buffer implementation including missing values here, but it will require some additional work.
do we need missing value functionality for time series?
There are no missing values is this case.
In ML, structures like LabeledDoubleBuffer might be helpful, where Label is a type of generic, for example, java.awt.Color as in #427. Or, to avoid complicated generics, it can always be Int, so we can use LabeledDoubleBuffer instead of Buffer<Pair<Double, Int>>. But this is not 1-st priority.
There is a numeric series of temporal data, for example, temperature.
We need to get information about what cycles the series has (at what amplitude, at what period and so on). One possible method of doing this is Empirical Mode Decomposition, a.k.a. Huang transform, which has positive practical feedbacks (and not very clear theoretical basis, although). And has some advantages over classical methods like Fourier-decomposition.
http://perso.ens-lyon.fr/patrick.flandrin/emd.html
Expectations from math library:
a + b
for adding two series, ors.diff()
for computing per-element changes, locate extreme pointsThe text was updated successfully, but these errors were encountered: