forked from etheriau/OpenForecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-all.html
1035 lines (1019 loc) · 109 KB
/
index-all.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Sun May 29 20:35:01 CDT 2011 -->
<TITLE>
Index (OpenForecast API)
</TITLE>
<META NAME="date" CONTENT="2011-05-29">
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (OpenForecast API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_W_">W</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input"><B>AbstractBuilder</B></A> - Class in <A HREF="./net/sourceforge/openforecast/input/package-summary.html">net.sourceforge.openforecast.input</A><DD>Defines an abstract Builder class that provides some common functionality
and helper methods for use by sub-classes.<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#AbstractBuilder()"><B>AbstractBuilder()</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models"><B>AbstractForecastingModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>This class implements a variety of methods that are common across all
forecasting models.<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#AbstractForecastingModel()"><B>AbstractForecastingModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Default constructor.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models"><B>AbstractTimeBasedModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>A time based forecasting model is the base class that implements much of
the common code for models based on a time series.<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#AbstractTimeBasedModel()"><B>AbstractTimeBasedModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Constructs a new time based forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#AbstractTimeBasedModel(java.lang.String)"><B>AbstractTimeBasedModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#AbstractTimeBasedModel(java.lang.String)"><CODE>AbstractTimeBasedModel.AbstractTimeBasedModel(java.lang.String)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#accuracyIndicators"><B>accuracyIndicators</B></A> -
Variable in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>The accuracy indicators, or measures of accuracy, obtained by applying
this forecasting model to the initial data set.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#add(net.sourceforge.openforecast.DataPoint)"><B>add(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Adds the given data point object to this data set.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#addAll(java.util.Collection)"><B>addAll(Collection<? extends DataPoint>)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Adds a collection of data points to this data set.
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#addVariable(java.lang.String)"><B>addVariable(String)</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>Adds the variable name to the end of the list of variables currently
defined for this Builder.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#AIC"><B>AIC</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to the Akaike Information Criteria measure.
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#BIAS"><B>BIAS</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to Bias.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#BLEND"><B>BLEND</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to a reasonable blend of all other
evaluation criteria.
<DT><A HREF="./net/sourceforge/openforecast/input/Builder.html#build()"><B>build()</B></A> -
Method in interface net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/Builder.html" title="interface in net.sourceforge.openforecast.input">Builder</A>
<DD>Retrieves a DataSet - a collection of DataPoints - from the current
input source.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#build()"><B>build()</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Retrieves a DataSet - a collection of DataPoints - from the current
input source.
<DT><A HREF="./net/sourceforge/openforecast/input/ResultSetBuilder.html#build()"><B>build()</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/ResultSetBuilder.html" title="class in net.sourceforge.openforecast.input">ResultSetBuilder</A>
<DD>Retrieves a DataSet - a collection of DataPoints - from the current
input source.
<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html#build()"><B>build()</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input">TimeSeriesBuilder</A>
<DD>Retrieves a DataSet - a collection of DataPoints - from the current
(JFreeChart) TimeSeries.
<DT><A HREF="./net/sourceforge/openforecast/input/Builder.html" title="interface in net.sourceforge.openforecast.input"><B>Builder</B></A> - Interface in <A HREF="./net/sourceforge/openforecast/input/package-summary.html">net.sourceforge.openforecast.input</A><DD>An interface that defines the minimal requirements for a class to be
considered a "builder".</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#calculateAccuracyIndicators(net.sourceforge.openforecast.DataSet)"><B>calculateAccuracyIndicators(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>A helper method to calculate the various accuracy indicators when
applying the given DataSet to the current forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#calculateAccuracyIndicators(net.sourceforge.openforecast.DataSet)"><B>calculateAccuracyIndicators(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Since this version of double exponential smoothing uses the current
observation to calculate a smoothed value, we must override the
calculation of the accuracy indicators.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#calculateAccuracyIndicators(net.sourceforge.openforecast.DataSet)"><B>calculateAccuracyIndicators(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Since this version of triple exponential smoothing uses the current
observation to calculate a smoothed value, we must override the
calculation of the accuracy indicators.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#clear()"><B>clear()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Removes all of the data points from this data set.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#close()"><B>close()</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Close the DelimitedTextOutputter, flushing it first.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#contains(java.lang.Object)"><B>contains(Object)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns true if this data set contains the given data point object; or
false otherwise.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#containsAll(java.util.Collection)"><B>containsAll(Collection<?>)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns true if this DataSet contains all of the DataPoints in the
specified collection.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input"><B>CSVBuilder</B></A> - Class in <A HREF="./net/sourceforge/openforecast/input/package-summary.html">net.sourceforge.openforecast.input</A><DD>Defines a Builder that can be used to construct a DataSet from CSV (Comma
Separated Values) file or input stream.<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.lang.String)"><B>CSVBuilder(String)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.lang.String, boolean)"><B>CSVBuilder(String, boolean)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file,
and treats the first row of data as a header row containing field names.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.io.File)"><B>CSVBuilder(File)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.io.File, boolean)"><B>CSVBuilder(File, boolean)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.io.FileReader)"><B>CSVBuilder(FileReader)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file
input stream.
<DT><A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html#CSVBuilder(java.io.FileReader, boolean)"><B>CSVBuilder(FileReader, boolean)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/CSVBuilder.html" title="class in net.sourceforge.openforecast.input">CSVBuilder</A>
<DD>Constructs a new CSVBuilder that reads its input from the named file
input stream.
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast"><B>DataPoint</B></A> - Interface in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>Defines the interface to a single data point, consisting of one value of a
dependent variable, and one or more values of independent variables.<DT><A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast"><B>DataSet</B></A> - Class in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>Represents a collection of data points.<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#DataSet()"><B>DataSet()</B></A> -
Constructor for class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Constructs a new empty data set.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#DataSet(net.sourceforge.openforecast.DataSet)"><B>DataSet(DataSet)</B></A> -
Constructor for class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Copy constructor: constructs a new data set object by copying the given
data set.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#DataSet(java.lang.String, int, java.util.Collection)"><B>DataSet(String, int, Collection<DataPoint>)</B></A> -
Constructor for class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Constructs a new time-based data set with the named time variable, the
given number of data points in a year, and the given Collection of data
points.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output"><B>DelimitedTextOutputter</B></A> - Class in <A HREF="./net/sourceforge/openforecast/output/package-summary.html">net.sourceforge.openforecast.output</A><DD>Defines an Outputter that can be used to write a DataSet in any text
delimited format.<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#DelimitedTextOutputter(java.lang.String)"><B>DelimitedTextOutputter(String)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Constructs a new DelimitedTextOutputter that writes its output to the
named file.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#DelimitedTextOutputter(java.lang.String, boolean)"><B>DelimitedTextOutputter(String, boolean)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Constructs a new DelimitedTextOutputter that writes its output to the
named file.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#DelimitedTextOutputter(java.io.File)"><B>DelimitedTextOutputter(File)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Constructs a new DelimitedTextOutputter that writes its output to the
given file.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#DelimitedTextOutputter(java.io.File, boolean)"><B>DelimitedTextOutputter(File, boolean)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Constructs a new DelimitedTextOutputter that writes its output to the
given file.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#DelimitedTextOutputter(java.io.Writer)"><B>DelimitedTextOutputter(Writer)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Constructs a new DelimitedTextOutputter that writes its output to the
given Writer object.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models"><B>DoubleExponentialSmoothingModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Double exponential smoothing - also known as Holt exponential smoothing
- is a refinement of the popular simple exponential smoothing model but
adds another component which takes into account any trend in the data.<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#DoubleExponentialSmoothingModel(double, double)"><B>DoubleExponentialSmoothingModel(double, double)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Constructs a new double exponential smoothing forecasting model, using
the given smoothing constants - alpha and gamma.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#equals(net.sourceforge.openforecast.DataPoint)"><B>equals(DataPoint)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Compares the given DataPoint object to the current DataPoint object,
and returns true if, and only if, the two data points represent the same
data point.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Indicates whether some other object, obj, is "equal to" this one.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#equals(net.sourceforge.openforecast.DataSet)"><B>equals(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Indicates whether some other DataSet is "equal to" this one.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>Compares two EvaluationCriteria objects for equality.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#equals(net.sourceforge.openforecast.DataPoint)"><B>equals(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Compares the given DataPoint to the current DataPoint/Observation,
and returns true if, and only if, the two data points represent the
same data point.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast"><B>EvaluationCriteria</B></A> - Class in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>A class of constants defining the various "evaluation criteria" that can be
used to compare the accuracy of two forecasting models.</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#forecast(net.sourceforge.openforecast.DataPoint)"><B>forecast(DataPoint)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data point.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#forecast(net.sourceforge.openforecast.DataSet)"><B>forecast(DataSet)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#forecast(net.sourceforge.openforecast.DataSet)"><B>forecast(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#forecast(net.sourceforge.openforecast.DataPoint)"><B>forecast(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#forecast(double)"><B>forecast(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the forecast value of the dependent variable for the given
value of the independent time variable.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#forecast(double)"><B>forecast(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns the forecast value of the dependent variable for the given
value of the (independent) time variable using a single exponential
smoothing model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#forecast(net.sourceforge.openforecast.DataPoint)"><B>forecast(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data point.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#forecast(net.sourceforge.openforecast.DataPoint)"><B>forecast(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data point.
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#forecast(net.sourceforge.openforecast.DataPoint)"><B>forecast(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Using the current model parameters (initialized in init), apply the
forecast model to the given data point.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#forecast(double)"><B>forecast(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Returns the forecast value of the dependent variable for the given
value of the independent time variable using a single exponential
smoothing model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#forecast(double)"><B>forecast(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the forecast value of the dependent variable for the given
value of the (independent) time variable using a single exponential
smoothing model.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#forecast(double)"><B>forecast(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Returns the forecast value of the dependent variable for the given
value of the independent time variable.
<DT><A HREF="./net/sourceforge/openforecast/Forecaster.html" title="class in net.sourceforge.openforecast"><B>Forecaster</B></A> - Class in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>The Forecaster class is a factory class that obtains the best
ForecastingModel for the given data set.<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast"><B>ForecastingModel</B></A> - Interface in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>Defines a consistent interface that must be implemented by all Forecasting
Models.</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getAIC()"><B>getAIC()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the Akaike Information Criteria obtained from applying the current
forecasting model to the initial data set to try and predict each data
point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getAIC()"><B>getAIC()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the Akaike Information Criteria obtained from applying the current
forecasting model to the initial data set to try and predict each data
point.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getAlpha()"><B>getAlpha()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns the value of the smoothing constant, alpha, used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getAlpha()"><B>getAlpha()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Returns the value of the smoothing constant, alpha, used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getAlpha()"><B>getAlpha()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the value of the smoothing constant, alpha, used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet)"><B>getBestFitModel(DataSet)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Factory method that returns a "best fit" double exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet, double, double)"><B>getBestFitModel(DataSet, double, double)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Factory method that returns a best fit double exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet)"><B>getBestFitModel(DataSet)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Factory method that returns a "best fit" simple exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet, double)"><B>getBestFitModel(DataSet, double)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Factory method that returns a best fit simple exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet)"><B>getBestFitModel(DataSet)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Factory method that returns a "best fit" triple exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getBestFitModel(net.sourceforge.openforecast.DataSet, double, double)"><B>getBestFitModel(DataSet, double, double)</B></A> -
Static method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Factory method that returns a best fit triple exponential smoothing
model for the given data set.
<DT><A HREF="./net/sourceforge/openforecast/Forecaster.html#getBestForecast(net.sourceforge.openforecast.DataSet)"><B>getBestForecast(DataSet)</B></A> -
Static method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Forecaster.html" title="class in net.sourceforge.openforecast">Forecaster</A>
<DD>Obtains the best forecasting model for the given DataSet.
<DT><A HREF="./net/sourceforge/openforecast/Forecaster.html#getBestForecast(net.sourceforge.openforecast.DataSet, net.sourceforge.openforecast.EvaluationCriteria)"><B>getBestForecast(DataSet, EvaluationCriteria)</B></A> -
Static method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Forecaster.html" title="class in net.sourceforge.openforecast">Forecaster</A>
<DD>Obtains the best forecasting model for the given DataSet.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getBeta()"><B>getBeta()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the value of the trend smoothing constant, beta, used in this
model.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getBias()"><B>getBias()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the bias - the arithmetic mean of the errors - obtained from
applying the current forecasting model to the initial data set to try
and predict each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getBias()"><B>getBias()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the bias - the arithmetic mean of the errors - obtained from
applying the current forecasting model to the initial data set to try
and predict each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#getCoefficients()"><B>getCoefficients()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Returns a Hashtable containing the coefficients that will be used by
the current model.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#getDelimiter()"><B>getDelimiter()</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Returns the current field delimiter.
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#getDependentValue()"><B>getDependentValue()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Returns the current value assigned to the dependent variable.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#getDependentValue()"><B>getDependentValue()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Returns the current value assigned to the dependent variable.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#getDependentVariableName()"><B>getDependentVariableName()</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Returns the current name to be used as the dependent variable name
when outputting a header row.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Returns a short name for this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html" title="class in net.sourceforge.openforecast.models">NaiveForecastingModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Returns a short name for this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Returns a short name for this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#getForecastType()"><B>getForecastType()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Returns a one or two word name of this type of forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getForecastValue(double)"><B>getForecastValue(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the forecast value for the dependent variable for the given
value of the independent time variable.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getGamma()"><B>getGamma()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns the value of the trend smoothing constant, gamma, used in this
model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getGamma()"><B>getGamma()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the value of the seasonal smoothing constant, gamma, used in
this model.
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#getIndependentValue(java.lang.String)"><B>getIndependentValue(String)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Returns the current value assigned to the named independent variable.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#getIndependentValue(java.lang.String)"><B>getIndependentValue(String)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Returns the current value assigned to the named independent variable.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getIndependentVariable()"><B>getIndependentVariable()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the independent variable - or the time variable - used in this
model.
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#getIndependentVariableNames()"><B>getIndependentVariableNames()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Returns an array of all independent variable names.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#getIndependentVariableNames()"><B>getIndependentVariableNames()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Returns an array of all independent variable names.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#getIndependentVariables()"><B>getIndependentVariables()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns an ordered array of all independent variable names used in this
data set.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#getIntercept()"><B>getIntercept()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Returns the intercept that will be used by the current model.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getMAD()"><B>getMAD()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the mean absolute deviation obtained from applying the current
forecasting model to the initial data set to try and predict each data
point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getMAD()"><B>getMAD()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the mean absolute deviation obtained from applying the current
forecasting model to the initial data set to try and predict each data
point.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getMAPE()"><B>getMAPE()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the mean absolute percentage error obtained from applying the
current forecasting model to the initial data set to try and predict
each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getMAPE()"><B>getMAPE()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the mean absolute percentage error obtained from applying the
current forecasting model to the initial data set to try and predict
each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getMaximumTimeValue()"><B>getMaximumTimeValue()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the maximum value of the independent time variable currently
forecast by this model.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getMinimumTimeValue()"><B>getMinimumTimeValue()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the minimum value of the independent time variable currently
forecast by this model.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getMSE()"><B>getMSE()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the mean square of the errors (MSE) obtained from applying the
current forecasting model to the initial data set to try and predict
each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getMSE()"><B>getMSE()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the mean square of the errors (MSE) obtained from applying the
current forecasting model to the initial data set to try and predict
each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getNumberOfPeriods()"><B>getNumberOfPeriods()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the current number of periods used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getNumberOfPeriods()"><B>getNumberOfPeriods()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns the current number of periods used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getNumberOfPeriods()"><B>getNumberOfPeriods()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Returns the current number of periods used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getNumberOfPeriods()"><B>getNumberOfPeriods()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the current number of periods used in this model.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#getNumberOfPeriods()"><B>getNumberOfPeriods()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Returns the current number of periods used in this model.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#getNumberOfPredictors()"><B>getNumberOfPredictors()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Returns the number of predictors used by the underlying model.
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#getNumberOfVariables()"><B>getNumberOfVariables()</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>Returns the number of variables currently defined in this
AbstractBuilder.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getObservedValue(double)"><B>getObservedValue(double)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the observed value of the dependent variable for the given
value of the independent time variable.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#getPeriodsPerYear()"><B>getPeriodsPerYear()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns the number of periods - or data points - in a years worth of
data for time-series data.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#getSAE()"><B>getSAE()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Returns the sum of the absolute errors (SAE) obtained from applying the
current forecasting model to the initial data set to try and predict
each data point.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#getSAE()"><B>getSAE()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Returns the Sum of Absolute Errors (SAE) obtained by applying the
current forecasting model to the initial data set.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getTimeInterval()"><B>getTimeInterval()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the current time interval between observations.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#getTimeVariable()"><B>getTimeVariable()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns the time variable associated with this data set, or
<code>null</code> if no time variable has been defined.
<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html#getTimeVariable()"><B>getTimeVariable()</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input">TimeSeriesBuilder</A>
<DD>Returns the name of the currently defined time variable.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#getTimeVariable()"><B>getTimeVariable()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Returns the name of the independent variable representing the time
value used by this model.
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#getVariableName(int)"><B>getVariableName(int)</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>Returns the variable name with the given index.
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#hashCode()"><B>hashCode()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns the hash code value for this collection, based on the
underlying Collection of DataPoints.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#HUNTER"><B>HUNTER</B></A> -
Static variable in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Used in the <A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(java.lang.String, double, int)"><CODE>three argument
constructor</CODE></A> to specify that Hunter's formula is to be used for
calculating forecast values.
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>Used to initialize the model-specific parameters and customize them
to the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Used to initialize the time based model.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD>Used to initialize the moving average model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Initializes the coefficients to use for this regression model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#init(double, java.util.Hashtable)"><B>init(double, Hashtable<String, Double>)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Initializes the coefficients to use for this regression model with the
given values.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Initializes the coefficients to use for this regression model.
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Initializes the coefficients to use for this regression model.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#init(net.sourceforge.openforecast.DataSet)"><B>init(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Used to initialize the time based model.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html#initialized"><B>initialized</B></A> -
Variable in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractForecastingModel.html" title="class in net.sourceforge.openforecast.models">AbstractForecastingModel</A>
<DD>Remembers whether this model has been properly initialized.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#initTimeVariable(net.sourceforge.openforecast.DataSet)"><B>initTimeVariable(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>Initializes the time variable from the given data set.
<DT><A HREF="./net/sourceforge/openforecast/models/InsufficientDataException.html" title="class in net.sourceforge.openforecast.models"><B>InsufficientDataException</B></A> - Exception in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Represents the case when there is insufficient data available to return a
valid forecast value.<DT><A HREF="./net/sourceforge/openforecast/models/InsufficientDataException.html#InsufficientDataException()"><B>InsufficientDataException()</B></A> -
Constructor for exception net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/InsufficientDataException.html" title="class in net.sourceforge.openforecast.models">InsufficientDataException</A>
<DD>Default constructor.
<DT><A HREF="./net/sourceforge/openforecast/models/InsufficientDataException.html#InsufficientDataException(java.lang.String)"><B>InsufficientDataException(String)</B></A> -
Constructor for exception net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/InsufficientDataException.html" title="class in net.sourceforge.openforecast.models">InsufficientDataException</A>
<DD>Constructs a new InsufficientDataException with the given reason.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#isEmpty()"><B>isEmpty()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns true if this data set contains no data points.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#iterator()"><B>iterator()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns an iterator over the data points in this data set.
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#MAD"><B>MAD</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to the Mean Absolute Deviation.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#MAPE"><B>MAPE</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to the Mean Absolute Percentage Error.
<DT><A HREF="./net/sourceforge/openforecast/models/ModelNotInitializedException.html" title="class in net.sourceforge.openforecast.models"><B>ModelNotInitializedException</B></A> - Exception in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>This exception should be thrown when an attempt is made to use a method in
a model that has not been initialized by calling init.<DT><A HREF="./net/sourceforge/openforecast/models/ModelNotInitializedException.html#ModelNotInitializedException()"><B>ModelNotInitializedException()</B></A> -
Constructor for exception net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/ModelNotInitializedException.html" title="class in net.sourceforge.openforecast.models">ModelNotInitializedException</A>
<DD>Constructs a new ModelNotInitializedException with no detail message.
<DT><A HREF="./net/sourceforge/openforecast/models/ModelNotInitializedException.html#ModelNotInitializedException(java.lang.String)"><B>ModelNotInitializedException(String)</B></A> -
Constructor for exception net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/ModelNotInitializedException.html" title="class in net.sourceforge.openforecast.models">ModelNotInitializedException</A>
<DD>Constructs a new ModelNotInitializedException with the specified detail
message.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models"><B>MovingAverageModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>A moving average forecast model is based on an artificially constructed
time series in which the value for a given time period is replaced by the
mean of that value and the values for some number of preceding and
succeeding time periods.<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel()"><B>MovingAverageModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD>Constructs a new moving average forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel(java.lang.String)"><B>MovingAverageModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel(java.lang.String, int)"><CODE>MovingAverageModel.MovingAverageModel(java.lang.String, int)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel(int)"><B>MovingAverageModel(int)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD>Constructs a new moving average forecasting model, using the specified
period.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel(java.lang.String, int)"><B>MovingAverageModel(String, int)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#MovingAverageModel(int)"><CODE>MovingAverageModel.MovingAverageModel(int)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#MSE"><B>MSE</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to the Mean Squared Error.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models"><B>MultipleLinearRegressionModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Implements a multiple variable linear regression model using the variables
named in the constructor as the independent variables, or the variables
passed into one of the init methods.<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#MultipleLinearRegressionModel()"><B>MultipleLinearRegressionModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>A default constructor that constructs a new multiple variable Linear
regression model.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#MultipleLinearRegressionModel(java.lang.String[])"><B>MultipleLinearRegressionModel(String[])</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Constructs a new multiple variable linear regression model, using the
given array of names as the independent variables to use.
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html" title="class in net.sourceforge.openforecast.models"><B>NaiveForecastingModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>A naive forecasting model is a special case of the moving average
forecasting model where the number of periods used for smoothing is 1.<DT><A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html#NaiveForecastingModel()"><B>NaiveForecastingModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html" title="class in net.sourceforge.openforecast.models">NaiveForecastingModel</A>
<DD>Constructs a new naive forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html#NaiveForecastingModel(java.lang.String)"><B>NaiveForecastingModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html" title="class in net.sourceforge.openforecast.models">NaiveForecastingModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html#NaiveForecastingModel(java.lang.String)"><CODE>NaiveForecastingModel.NaiveForecastingModel(java.lang.String)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/package-summary.html"><B>net.sourceforge.openforecast</B></A> - package net.sourceforge.openforecast<DD>This is the main package for OpenForecast.<DT><A HREF="./net/sourceforge/openforecast/input/package-summary.html"><B>net.sourceforge.openforecast.input</B></A> - package net.sourceforge.openforecast.input<DD>Defines a variety of helper classes used for creating DataSet and
DataPoint objects from a variety of different input sources.<DT><A HREF="./net/sourceforge/openforecast/models/package-summary.html"><B>net.sourceforge.openforecast.models</B></A> - package net.sourceforge.openforecast.models<DD>Defines the different ForecastingModels implemented in OpenForecast.<DT><A HREF="./net/sourceforge/openforecast/output/package-summary.html"><B>net.sourceforge.openforecast.output</B></A> - package net.sourceforge.openforecast.output<DD>Defines a variety of helper classes used for outputting DataSet and
DataPoint objects to a variety of different output sources.</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast"><B>Observation</B></A> - Class in <A HREF="./net/sourceforge/openforecast/package-summary.html">net.sourceforge.openforecast</A><DD>Represents a single observation or data point, consisting of one value
of a dependent variable, and one or more values of independent variables.<DT><A HREF="./net/sourceforge/openforecast/Observation.html#Observation(double)"><B>Observation(double)</B></A> -
Constructor for class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Initializes the current Observation with the given value of the
dependent variable.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#Observation(net.sourceforge.openforecast.DataPoint)"><B>Observation(DataPoint)</B></A> -
Constructor for class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Like a copy constructor, but constructs a new Observation object by
making a copy of the values from the given data point.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#output(net.sourceforge.openforecast.DataSet)"><B>output(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Writes a DataSet - a collection of DataPoints - to the current writer.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#output(net.sourceforge.openforecast.DataPoint)"><B>output(DataPoint)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Outputs the given DataPoint to the current Writer.
<DT><A HREF="./net/sourceforge/openforecast/output/Outputter.html#output(net.sourceforge.openforecast.DataSet)"><B>output(DataSet)</B></A> -
Method in interface net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/Outputter.html" title="interface in net.sourceforge.openforecast.output">Outputter</A>
<DD>Outputs the DataSet - a collection of DataPoints - to the current
output destination.
<DT><A HREF="./net/sourceforge/openforecast/output/TimeSeriesOutputter.html#output(net.sourceforge.openforecast.DataSet)"><B>output(DataSet)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/TimeSeriesOutputter.html" title="class in net.sourceforge.openforecast.output">TimeSeriesOutputter</A>
<DD>Adds a DataSet - a collection of DataPoints - to the current TimeSeries.
<DT><A HREF="./net/sourceforge/openforecast/output/Outputter.html" title="interface in net.sourceforge.openforecast.output"><B>Outputter</B></A> - Interface in <A HREF="./net/sourceforge/openforecast/output/package-summary.html">net.sourceforge.openforecast.output</A><DD>An interface that defines the minimal requirements for a class to be
considered an "outputter" - a class that can be used to assist with the
output of a DataSet (set of DataPoint objects) to a variety of different
output destinations.</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models"><B>PolynomialRegressionModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Implements a single variable polynomial regression model using the variable
named in the constructor as the independent variable.<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#PolynomialRegressionModel(java.lang.String)"><B>PolynomialRegressionModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Constructs a new polynomial regression model, using the given name as
the independent variable.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#PolynomialRegressionModel(java.lang.String, int)"><B>PolynomialRegressionModel(String, int)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Constructs a new linear regression model, using the given name as the
independent variable.
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models"><B>RegressionModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Implements a single variable linear regression model using the variable
named in the constructor as the independent variable.<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#RegressionModel(java.lang.String)"><B>RegressionModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Constructs a new linear regression model, using the given name as the
independent variable.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#remove(java.lang.Object)"><B>remove(Object)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Removes a single instance of the specified data point object from this
data set, if it is present.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#removeAll(java.util.Collection)"><B>removeAll(Collection<?>)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Not currently implemented - always throws UnsupportedOperationException.
<DT><A HREF="./net/sourceforge/openforecast/input/ResultSetBuilder.html" title="class in net.sourceforge.openforecast.input"><B>ResultSetBuilder</B></A> - Class in <A HREF="./net/sourceforge/openforecast/input/package-summary.html">net.sourceforge.openforecast.input</A><DD>Defines a Builder that can be used to construct a DataSet from a ResultSet.<DT><A HREF="./net/sourceforge/openforecast/input/ResultSetBuilder.html#ResultSetBuilder(java.sql.ResultSet)"><B>ResultSetBuilder(ResultSet)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/ResultSetBuilder.html" title="class in net.sourceforge.openforecast.input">ResultSetBuilder</A>
<DD>Constructs a new ResultSetBuilder that reads its input from the given
ResultSet.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#retainAll(java.util.Collection)"><B>retainAll(Collection<?>)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Not currently implemented - always throws UnsupportedOperationException.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#ROBERTS"><B>ROBERTS</B></A> -
Static variable in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Used in the <A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(java.lang.String, double, int)"><CODE>three argument
constructor</CODE></A> to specify that Robert's formula is to be used for
calculating forecast values.
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#SAE"><B>SAE</B></A> -
Static variable in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>EvaluationCriteria referring to the Sum of the Absolute Error.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#setDelimiter(java.lang.String)"><B>setDelimiter(String)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Sets the field delimiter to the given String.
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#setDependentValue(double)"><B>setDependentValue(double)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Sets the dependent variables' value to the given value.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#setDependentValue(double)"><B>setDependentValue(double)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Sets the dependent variables' value to the given value.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#setDependentVariableName(java.lang.String)"><B>setDependentVariableName(String)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Sets the name/label to be used as the dependent variable name when
outputting a header row.
<DT><A HREF="./net/sourceforge/openforecast/DataPoint.html#setIndependentValue(java.lang.String, double)"><B>setIndependentValue(String, double)</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataPoint.html" title="interface in net.sourceforge.openforecast">DataPoint</A>
<DD>Sets the named independent variables' value to the given value.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#setIndependentValue(java.lang.String, double)"><B>setIndependentValue(String, double)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Sets the named independent variables' value to the given value.
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#setNumberOfVariables(int)"><B>setNumberOfVariables(int)</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>Sets the number of variables to be defined/referenced by this
AbstractBuilder.
<DT><A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html#setOutputHeaderRow(boolean)"><B>setOutputHeaderRow(boolean)</B></A> -
Method in class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/DelimitedTextOutputter.html" title="class in net.sourceforge.openforecast.output">DelimitedTextOutputter</A>
<DD>Enables/Disables the output of the header row containing column/field
names.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#setPeriodsPerYear(int)"><B>setPeriodsPerYear(int)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Sets the number of periods - or data points - in a years worth of data
for time-series data.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#setTimeVariable(java.lang.String)"><B>setTimeVariable(String)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Sets the name of the time variable for this data set.
<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html#setTimeVariable(java.lang.String)"><B>setTimeVariable(String)</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input">TimeSeriesBuilder</A>
<DD>Used to change the time variable name.
<DT><A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html#setVariableName(int, java.lang.String)"><B>setVariableName(int, String)</B></A> -
Method in class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/AbstractBuilder.html" title="class in net.sourceforge.openforecast.input">AbstractBuilder</A>
<DD>Sets the name for the variable with the given index to the given name.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#setWeights(double[])"><B>setWeights(double[])</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Sets the weights used by this weighted moving average forecasting model
to the given weights.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models"><B>SimpleExponentialSmoothingModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>A simple exponential smoothing forecast model is a very popular model
used to produce a smoothed Time Series.<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(double)"><B>SimpleExponentialSmoothingModel(double)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Constructs a new simple exponential smoothing forecasting model, using
the specified smoothing constant.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(java.lang.String, double)"><B>SimpleExponentialSmoothingModel(String, double)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(double)"><CODE>SimpleExponentialSmoothingModel.SimpleExponentialSmoothingModel(double)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(double, int)"><B>SimpleExponentialSmoothingModel(double, int)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>Constructs a new exponential smoothing forecasting model, using the
given name as the independent variable and the specified smoothing
constant.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(java.lang.String, double, int)"><B>SimpleExponentialSmoothingModel(String, double, int)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#SimpleExponentialSmoothingModel(double, int)"><CODE>SimpleExponentialSmoothingModel.SimpleExponentialSmoothingModel(double,int)</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#size()"><B>size()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Returns the number of data points in this data set.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#sort(java.lang.String)"><B>sort(String)</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Sorts the given data set according to increasing value of the named
independent variable.
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input"><B>TimeSeriesBuilder</B></A> - Class in <A HREF="./net/sourceforge/openforecast/input/package-summary.html">net.sourceforge.openforecast.input</A><DD>Defines a Builder that can be used to construct a DataSet from a TimeSeries
object as used/defined by JFreeChart.<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html#TimeSeriesBuilder(org.jfree.data.time.TimeSeries)"><B>TimeSeriesBuilder(TimeSeries)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input">TimeSeriesBuilder</A>
<DD>Constructs a new TimeSeriesBuilder that reads its input from the given
TimeSeries object.
<DT><A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html#TimeSeriesBuilder(org.jfree.data.time.TimeSeries, java.lang.String)"><B>TimeSeriesBuilder(TimeSeries, String)</B></A> -
Constructor for class net.sourceforge.openforecast.input.<A HREF="./net/sourceforge/openforecast/input/TimeSeriesBuilder.html" title="class in net.sourceforge.openforecast.input">TimeSeriesBuilder</A>
<DD>Constructs a new TimeSeriesBuilder that reads its input from the given
TimeSeries object.
<DT><A HREF="./net/sourceforge/openforecast/output/TimeSeriesOutputter.html" title="class in net.sourceforge.openforecast.output"><B>TimeSeriesOutputter</B></A> - Class in <A HREF="./net/sourceforge/openforecast/output/package-summary.html">net.sourceforge.openforecast.output</A><DD>Defines an Outputter that can be used to add the DataPoints from a DataSet
to a (JFreeChart) TimeSeries.<DT><A HREF="./net/sourceforge/openforecast/output/TimeSeriesOutputter.html#TimeSeriesOutputter(org.jfree.data.time.TimeSeries, java.lang.Class)"><B>TimeSeriesOutputter(TimeSeries, Class<?>)</B></A> -
Constructor for class net.sourceforge.openforecast.output.<A HREF="./net/sourceforge/openforecast/output/TimeSeriesOutputter.html" title="class in net.sourceforge.openforecast.output">TimeSeriesOutputter</A>
<DD>Constructs a new TimeSeriesOutputter that adds its output to the named
TimeSeries.
<DT><A HREF="./net/sourceforge/openforecast/DataSet.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/DataSet.html" title="class in net.sourceforge.openforecast">DataSet</A>
<DD>Overrides the default toString method.
<DT><A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/EvaluationCriteria.html" title="class in net.sourceforge.openforecast">EvaluationCriteria</A>
<DD>Returns a textual description of this evaluation criteria object.
<DT><A HREF="./net/sourceforge/openforecast/ForecastingModel.html#toString()"><B>toString()</B></A> -
Method in interface net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/ForecastingModel.html" title="interface in net.sourceforge.openforecast">ForecastingModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/AbstractTimeBasedModel.html" title="class in net.sourceforge.openforecast.models">AbstractTimeBasedModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/DoubleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">DoubleExponentialSmoothingModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MovingAverageModel.html" title="class in net.sourceforge.openforecast.models">MovingAverageModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/MultipleLinearRegressionModel.html" title="class in net.sourceforge.openforecast.models">MultipleLinearRegressionModel</A>
<DD>Returns a detailed description of this forcasting model, including the
intercept and slope.
<DT><A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/NaiveForecastingModel.html" title="class in net.sourceforge.openforecast.models">NaiveForecastingModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/PolynomialRegressionModel.html" title="class in net.sourceforge.openforecast.models">PolynomialRegressionModel</A>
<DD>Returns a detailed description of this forcasting model, including the
intercept and slope.
<DT><A HREF="./net/sourceforge/openforecast/models/RegressionModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/RegressionModel.html" title="class in net.sourceforge.openforecast.models">RegressionModel</A>
<DD>Returns a detailed description of this forcasting model, including the
intercept and slope.
<DT><A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/SimpleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">SimpleExponentialSmoothingModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>This should be overridden to provide a textual description of the
current forecasting model including, where possible, any derived
parameters used.
<DT><A HREF="./net/sourceforge/openforecast/Observation.html#toString()"><B>toString()</B></A> -
Method in class net.sourceforge.openforecast.<A HREF="./net/sourceforge/openforecast/Observation.html" title="class in net.sourceforge.openforecast">Observation</A>
<DD>Overrides the default toString method to provide a more meaningful
output of an Observation.
<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models"><B>TripleExponentialSmoothingModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>Triple exponential smoothing - also known as the Winters method - is a
refinement of the popular double exponential smoothing model but adds
another component which takes into account any seasonality - or periodicity
- in the data.<DT><A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html#TripleExponentialSmoothingModel(double, double, double)"><B>TripleExponentialSmoothingModel(double, double, double)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/TripleExponentialSmoothingModel.html" title="class in net.sourceforge.openforecast.models">TripleExponentialSmoothingModel</A>
<DD>Constructs a new triple exponential smoothing forecasting model, using
the given smoothing constants - alpha, beta and gamma.
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models"><B>WeightedMovingAverageModel</B></A> - Class in <A HREF="./net/sourceforge/openforecast/models/package-summary.html">net.sourceforge.openforecast.models</A><DD>A weighted moving average forecast model is based on an artificially
constructed time series in which the value for a given time period is
replaced by the weighted mean of that value and the values for some number
of preceding time periods.<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel(double[])"><B>WeightedMovingAverageModel(double[])</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Constructs a new weighted moving average forecasting model, using the
specified weights.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel(java.lang.String, double[])"><B>WeightedMovingAverageModel(String, double[])</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel(double[])"><CODE>WeightedMovingAverageModel.WeightedMovingAverageModel(double[])</CODE></A>.</I>
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel()"><B>WeightedMovingAverageModel()</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD>Constructs a new weighted moving average forecasting model.
<DT><A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel(java.lang.String)"><B>WeightedMovingAverageModel(String)</B></A> -
Constructor for class net.sourceforge.openforecast.models.<A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html" title="class in net.sourceforge.openforecast.models">WeightedMovingAverageModel</A>
<DD><B>Deprecated.</B> <I>As of 0.4, replaced by <A HREF="./net/sourceforge/openforecast/models/WeightedMovingAverageModel.html#WeightedMovingAverageModel(java.lang.String)"><CODE>WeightedMovingAverageModel.WeightedMovingAverageModel(java.lang.String)</CODE></A>.</I>
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_W_">W</A>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>