java-timeseries icon indicating copy to clipboard operation
java-timeseries copied to clipboard

day time predict

Open shiwla opened this issue 3 years ago • 0 comments

double[] series = new double[]{1, 46, 8, 3, 4, 6, 9, 2, 16, 3}; TimeSeries timeSeries = TimeSeries.from(TimePeriod.oneDay(), series);

The product of lag and times must be less than or equal to the length of the series, but 1 * 365 = 365 is greater than 9

shiwla avatar Jan 15 '21 02:01 shiwla