You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+16-11Lines changed: 16 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,12 @@
1
+
#garma 0.9.21
2
+
3
+
- fixed bug in`gg_raw_pgram()`.
4
+
1
5
#garma 0.9.20
2
6
3
7
- Log likelihood and AIC calc now include various constants to match with the AIC calculation of the "Forecast" package.
4
8
- Number of required optimisation packages has been reduced.
5
-
- both garma() and ggbr_semipara() now support the`periods` parameter allowing the user to specify fixed periods instead of estimating them from the data.
9
+
- both`garma()` and`ggbr_semipara()` now support the`periods` parameter allowing the user to specify fixed periods instead of estimating them from the data.
6
10
- The "xreg" parameter is now supported, although unlike "arima" this is a 2 stage process where a linear regression is first fit to the data and then a GARMA model is fit to the residuals of the regression.
7
11
- A number of optimisation methods have been removed as they rarely seemed to provide any benefit.
8
12
@@ -12,27 +16,28 @@ Fixes to the garma-package.rd file.
12
16
13
17
#garma 0.9.8
14
18
15
-
Version 0.9.8 includes an option to stop the automatic generation of fitted values for the garma function. This can take a while if the process is long,
16
-
so this option may save time during the model fitting stage.
19
+
Version 0.9.8 includes an option to stop the automatic generation of fitted values for the`garma()` function. This can take a
20
+
while if the process is long,so this option may save time during the model fitting stage.
17
21
18
22
#garma 0.9.7
19
23
20
-
Version 0.9.7 adds the"tsdiag" function for garma models. The essential white noise test is set to be the Bartletts Tp test,
21
-
since this is the only white noise test which has been theoretically justified on GARMA models. Also the"gof" function has
24
+
Version 0.9.7 adds the`tsdiag()` function for garma models. The essential white noise test is set to be the Bartletts Tp test,
25
+
since this is the only white noise test which has been theoretically justified on GARMA models. Also the`gof()` function has
22
26
been added - this does the actual work of the Tp test, and in fact should work and should be valid for normal Arima models
23
27
as well as GARMA models.
24
28
25
-
In the 'estimation' process - "garma" - there was a bug with the standard errors which resulted in Nan being returned for some parameters. This has been fixed.
26
-
Further fixes have applied to the Whittle estimation of the standard errors and to the likelihood calculation.
29
+
In the 'estimation' process -`garma()` - there was a bug with the standard errors which resulted in Nan being returned for some
30
+
parameters. This has been fixed. Further fixes have applied to the Whittle estimation of the standard errors and to the likelihood
31
+
calculation.
27
32
28
33
The fitted values/residuals were not being properly calculated as per 1-step ahead forecasts. This has been rectified
29
34
(although for non-Gegenbauer ARIMA models there may still be some issues which will be looked at later).
30
35
31
36
The override of the ggplot function for garma models has been removed as this was not standard - the correct way to do this
32
-
is'autoplot' so now the autoplot function has the ability to generate forecasts and plot them. If no titles and
37
+
is`autoplot()` so now the autoplot function has the ability to generate forecasts and plot them. If no titles and
33
38
subtitles are supplied, these routines will now generate some default ones for you.
34
39
35
-
A new optimisation method has been added for the"garma" function - this is a genetic algorithm from package GA.
40
+
A new optimisation method has been added for the`garma()` function - this is a genetic algorithm from package GA.
36
41
It can be used by specifying opt_method='ga'.
37
42
38
43
The "QML" method of estimation was producing too many errors and appeared to be converging to non-optimal solutions too often.
@@ -45,14 +50,14 @@ only - general integer differencing is now supported.
45
50
46
51
Version 0.9.6 implements new functions to more accurately reflect residuals, fitted values and predictions.
47
52
Some changes have been made to the plotting routines to provide default titles and captions etc.
48
-
Further some functions like AIC(),logLik(),vcov(), and coef() have been implemented, to provide
53
+
Further some functions like`AIC()`,`logLik()`,`vcov()`, and`coef()` have been implemented, to provide
49
54
greater similarity with the standard 'arima' functionality.
50
55
51
56
Finally given the trouble with forecasting with integer differencing > 1, there is a new restriction in the code to restrict
52
57
the integer differencing to be either 0 or 1. This does not affect the fractional differencing component of the models.
53
58
If the problems with forecasting higher integer differencing can be resolved, this restriction will be lifted in the future.
54
59
55
-
In particular please note that the'predict'/'forecast' function(s) now use the algorithm of (2009) Godet, F
60
+
In particular please note that the`predict()`/`forecast()` function(s) now use the algorithm of (2009) Godet, F
56
61
"Linear prediction of long-range dependent time series", ESAIM: PS 13 115-134. DOI: 10.1051/ps:2008015.
57
62
58
63
**WARNING**: forecasts generated by this version will be different from previous versions.