public interface TimeSeries
Modifier and Type | Method and Description |
---|---|
static double |
acf(double[] x,
int lag)
Autocorrelation function.
|
static double |
cov(double[] x,
int lag)
Autocovariance function.
|
static double[] |
diff(double[] x,
int lag)
Returns the first-differencing of time series.
|
static double[][] |
diff(double[] x,
int lag,
int differences)
Returns the differencing of time series.
|
static double |
pacf(double[] x,
int lag)
Partial autocorrelation function.
|
static double[] diff(double[] x, int lag)
x
- time serieslag
- the lag at which to differencestatic double[][] diff(double[] x, int lag, int differences)
x
- time serieslag
- the lag at which to differencedifferences
- the order of differencingstatic double cov(double[] x, int lag)
x
- time serieslag
- the lagstatic double acf(double[] x, int lag)
x
- time serieslag
- the lagstatic double pacf(double[] x, int lag)
x
- time serieslag
- the lag