3-ftransform-forecasting #5

Open
romanov73 wants to merge 27 commits from 3-f-transform into master
Showing only changes of commit c06688d744 - Show all commits

View File

@ -88,6 +88,20 @@ public class TimeSeries {
throw new RuntimeException("Индекс выходит за границы временного ряда"); throw new RuntimeException("Индекс выходит за границы временного ряда");
} }
public TimeSeriesValue getMax() {
if ((values.size() > 0)) {
return values.stream().max((o1, o2) -> o1.getValue().compareTo(o2.getValue())).get();
}
throw new RuntimeException("Временной ряд пустой");
}
public TimeSeriesValue getMin() {
if ((values.size() > 0)) {
return values.stream().min((o1, o2) -> o1.getValue().compareTo(o2.getValue())).get();
}
throw new RuntimeException("Временной ряд пустой");
}
@Override @Override
public String toString() { public String toString() {
return "TimeSeries{" + return "TimeSeries{" +