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