Interface IntTimeTimeSeries
-
- All Superinterfaces:
Iterable<IntTimeTimeSeries.Entry>,TimeSeries<Integer,Double,IntTimeTimeSeries.Entry>,UnivariateTimeSeries<Integer,IntTimeTimeSeries.Entry>
- All Known Implementing Classes:
AdditiveModel,DifferencedIntTimeTimeSeries,MultiplicativeModel,SimpleTimeSeries
public interface IntTimeTimeSeries extends UnivariateTimeSeries<Integer,IntTimeTimeSeries.Entry>
This is a univariate time series indexed by integers. The entries are the pair: {(n, double)}. This time series is often seen in classical time series analysis, where the data points are equally spaced.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIntTimeTimeSeries.EntryThis is theTimeSeries.Entryfor an integer number -indexed univariate time series.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleget(int t)Get the value at timet.-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface dev.nm.stat.timeseries.datastructure.TimeSeries
size
-
Methods inherited from interface dev.nm.stat.timeseries.datastructure.univariate.UnivariateTimeSeries
toArray
-
-