IDependenceForm.FittedSeason

Синтаксис

FittedSeason: Array;

Описание

Свойство FittedSeason возвращает массив значений модельного ряда формы зависимости с учетом сезонности.

Пример

Sub Main;

Var

trend: SmCurveEstimation;

d0: Double;

status, i: Integer;

ar: Array Of Double;

Forms: IDependenceForms;

Dep: IDependenceForm;

Begin

trend := New SmCurveEstimation.Create;

ar := New Double[25];

ar[00] := 4110;

ar[01] := 4280;

ar[02] := 4459;

ar[03] := 4545;

ar[04] := 4664;

ar[05] := 4861;

ar[06] := 5195;

ar[07] := 5389;

ar[08] := 5463;

ar[09] := 5610;

ar[10] := 5948;

ar[11] := 6218;

ar[12] := 6521;

ar[13] := 6788;

ar[14] := 7222;

ar[15] := 7486;

ar[16] := 7832;

ar[17] := 8153;

ar[18] := 8468;

ar[19] := 9054;

ar[20] := 9499;

ar[21] := 9866;

ar[22] := 10217;

ar[23] := 10763;

ar[24] := 10683;

trend.Explained.Value := ar;

trend.Explanatory.IsTrend := True;

trend.ModelPeriod.LastPoint := 20;

trend.ForecastLastPoint := 30;

trend.SeasonalComponent.Mode := SeasonalityType.additive;

trend.SeasonalComponent.Cycle := 4;

status := trend.Execute;

If status <> 0 Then

Debug.WriteLine(trend.Errors);

Else

Forms := trend.DependenceForms;

Dep := Forms.Item(1);

d0 := Dep.CriterionValue;

Debug.WriteLine("Форма зависимости " + Dep.DisplayName);

Debug.WriteLine("Значение критерия "+ ": " + d0.ToString);

Debug.WriteLine("=== Модельный ряд с учетом сезонности ===");

For i := 0 To Dep.FittedSeason.Length - 1 Do

d0 := Dep.FittedSeason[i];

Debug.WriteLine(i.ToString + ": " + d0.ToString);

End For;

End If;

End Sub Main;

После выполнения примера в окно консоли будут выведены следующие результаты:

Module execution started

Форма зависимости Квадратичная

Значение критерия: 0.99853888260620427

=== Модельный ряд с учетом сезонности ===

0: 4161.3545454545438

1: 4252.8350649350641

2: 4442.4678742310307

3: 4567.4529733424461

4: 4692.3403622693095

5: 4847.0300410116197

6: 5099.8720095693761

7: 5288.0662679425832

8: 5476.1628161312365

9: 5694.0616541353374

10: 6010.1127819548865

11: 6261.5161995898834

12: 6512.8219070403284

13: 6793.9299043062192

14: 7173.1901913875581

15: 7487.8027682843467

16: 7802.3176349965815

17: 8146.6347915242641

18: 8589.1042378673956

19: 8966.9259740259731

Module execution finished

См. также:

IDependenceForm