Skip to content

Commit 54f4802

Browse files
Merge branch 'arfima'
2 parents 0ef47b2 + 55e7ed9 commit 54f4802

File tree

6 files changed

+658
-1
lines changed

6 files changed

+658
-1
lines changed

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Suggests:
5353
covr,
5454
feasts,
5555
forecast,
56+
fracdiff,
5657
knitr,
5758
MTS,
5859
nnet,

NAMESPACE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ S3method(fitted,VARIMA)
1717
S3method(fitted,VECM)
1818
S3method(fitted,croston)
1919
S3method(fitted,fable_theta)
20+
S3method(fitted,fbl_ARFIMA)
2021
S3method(fitted,model_mean)
2122
S3method(forecast,AR)
2223
S3method(forecast,ARIMA)
@@ -29,6 +30,7 @@ S3method(forecast,VARIMA)
2930
S3method(forecast,VECM)
3031
S3method(forecast,croston)
3132
S3method(forecast,fable_theta)
33+
S3method(forecast,fbl_ARFIMA)
3234
S3method(forecast,model_mean)
3335
S3method(generate,AR)
3436
S3method(generate,ARIMA)
@@ -39,6 +41,7 @@ S3method(generate,TSLM)
3941
S3method(generate,VAR)
4042
S3method(generate,VARIMA)
4143
S3method(generate,VECM)
44+
S3method(generate,fbl_ARFIMA)
4245
S3method(generate,model_mean)
4346
S3method(glance,AR)
4447
S3method(glance,ARIMA)
@@ -67,13 +70,15 @@ S3method(model_sum,VAR)
6770
S3method(model_sum,VARIMA)
6871
S3method(model_sum,VECM)
6972
S3method(model_sum,fable_theta)
73+
S3method(model_sum,fbl_ARFIMA)
7074
S3method(model_sum,model_mean)
7175
S3method(refit,AR)
7276
S3method(refit,ARIMA)
7377
S3method(refit,ETS)
7478
S3method(refit,NNETAR)
7579
S3method(refit,RW)
7680
S3method(refit,TSLM)
81+
S3method(refit,fbl_ARFIMA)
7782
S3method(refit,model_mean)
7883
S3method(report,AR)
7984
S3method(report,ARIMA)
@@ -112,6 +117,7 @@ S3method(tidy,fable_theta)
112117
S3method(tidy,model_mean)
113118
export("%>%")
114119
export(AR)
120+
export(ARFIMA)
115121
export(ARIMA)
116122
export(CROSTON)
117123
export(ETS)
@@ -147,12 +153,15 @@ importFrom(stats,ar)
147153
importFrom(stats,coef)
148154
importFrom(stats,complete.cases)
149155
importFrom(stats,diffinv)
156+
importFrom(stats,fft)
150157
importFrom(stats,formula)
158+
importFrom(stats,frequency)
151159
importFrom(stats,lm)
152160
importFrom(stats,makeARIMA)
153161
importFrom(stats,model.frame)
154162
importFrom(stats,model.matrix)
155163
importFrom(stats,na.omit)
164+
importFrom(stats,nextn)
156165
importFrom(stats,predict)
157166
importFrom(stats,qnorm)
158167
importFrom(stats,residuals)

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# fable (development version)
22

3+
## New features
4+
5+
* Added `ARFIMA()` model.
6+
* Added `fracdiff()` and `fracdiffinv()` functions for fractional
7+
differencing and integration.
8+
39
## Improvements
410

511
* `ETS()` now supports missing values.

0 commit comments

Comments
 (0)