Displaying 20 results from an estimated 700 matches similar to: "Forecast package, auto.arima() convergence problem, and AIC/BIC extraction"
2011 Oct 04
0
how to make ARFIMA forecast by using r?
please help..
I have estimate the value of parameter for AR,MA and fractional d.but I have
problem on having the right command for forecasting ARFIMA model.please
help......
--
View this message in context: http://r.789695.n4.nabble.com/how-to-make-ARFIMA-forecast-by-using-r-tp3869928p3869928.html
Sent from the R help mailing list archive at Nabble.com.
2009 Jan 22
0
Forecasting by using ARFIMA(0, d, 0) models in R
Hello. I'm trying to make k-step-ahead forecasts using ARFIMA(0, d, 0)
models by taking the first T+k-1 coefficients in the binomial expansion of
(1-B)^d, regarding (1-B)^d x(T+k) as an AR(T+k-1) on x(T+k), where x(T)
is the series value at time T and k = 1, 2, 3,
. That is, I forecast the
series k values forward using the first T+k-1 coefficients in the binomial
expansion of (1-B)^d as
2008 May 01
1
Forecasting observations in ARFIMA
I would like to compute the next 15 observations for
an ARFIMA(2,1,0) model along with confidence
intervals. Can someone provide code?
Many thanks.
Jill
____________________________________________________________________________________
[[elided Yahoo spam]]
2023 Jun 05
1
error in arfima...
Dear Martin,
Sad that the bug is beyond your ken...
Fortunately, the error happens only rarely...The length of LYGH was 719 and there were only two such errors..I will just replace them with NA and make do.
By the by, what if I send LYGH as an attachment to your actual mail ( not the r-help mail)? Will it help? Can you then pinpoint the cause?
Or should I raise a bug
2023 Jun 01
1
error in arfima...
>>>>> akshay kulkarni
>>>>> on Wed, 31 May 2023 20:55:33 +0000 writes:
> dear members,
> I am using arfima() from forecast package to model a time
> series. The following is the code:
>> LYGH[[202]]
> [1] 45.40 3.25 6.50 2.15
>> arfima(LYGH[[202]])
> Error in .fdcov(x, fdf$d, h, nar = nar, nma = nma,
2023 May 16
1
mclapply enters into an infinite loop....
Dear members,
I am using arfima in an mclapply construction (from the parallel package):
Browse[2]> LYG <- mclapply(LYGH, FUN = arfima, mc.cores = detectCores())
^C
Browse[2]> LYG <- mclapply(LYGH[1:10], FUN = arfima, mc.cores = detectCores())
^C
Browse[2]> LYG <- mclapply(LYGH[1:2], FUN = arfima, mc.cores = detectCores())
^C
You can see that I am
2023 May 17
1
mclapply enters into an infinite loop....
Dear Jeff,
There was a problem in LYGH and lapply threw an error, but mclapply got stuck in an infinite loop. The doc for mclapply says that mclapply runs under try() with silent = TRUE. So that means mclapply should run properly, i.e output a try class object and exit. But it didn't. Can you shed some light on why this happened?
THanking you,
Yours sincerely,
AKSHAY M
2023 Jun 09
2
inconsistency in mclapply.....
Dear members,
I am using pbmcapply to parellise my code. But the following code doesn't work:
> LYG <- pbmclapply(LYGH,FUN = arfima,mc.cores = 2,mc.preschedule = FALSE)
| | 0%, ETA NA^
It just hangs.
But the
2010 May 06
0
forecast using arfima
Hello!
I used the function fracdiff(dn, nar=1, nma=1) and got the values of d, ar
and ma coefficients.
Also another coefficients were get under fdGPH, fdSperio.
How could I get the forecasts in these models?
Thank you very much
[[alternative HTML version deleted]]
2023 May 31
1
error in arfima...
dear members,
I am using arfima() from forecast package to model a time series. The following is the code:
> LYGH[[202]]
[1] 45.40 3.25 6.50 2.15
> arfima(LYGH[[202]])
Error in .fdcov(x, fdf$d, h, nar = nar, nma = nma, hess = hess, fdf.work = fdf$w) :
NA/NaN/Inf in foreign function call (arg 5)
I tried viewing .fdcov() with the following code:
2009 Jun 28
1
testing an ARFIMA model for structural breaks with unknown breakpoint
Dear R users,
I'm trying to use the "strucchange" package to determine structural breaks
in an ARFIMA model.
Unfortunately I'm not so familiar with this topic (and worse, I'm a beginner
in R), so I don't know exactly how to specify my model so that the
"Fstats","sctest" and "breakpoint" functions to recognize it and to
calculate the
2007 Jan 19
1
help with ets function in forecast package
I have been trying to use the ets function in the forecast package on a
daily time series (ts2 is a ts object with frequency =7). However when I run
the following code I get an error related to etsmodel. I have looked at ets
and I can see that there is a call to the function etsmodel, but I cant seem
to find info on the ets function anywhere. Does anyone know anything about
the etsmodel function?
2009 Sep 09
1
Forecast - How to create variables with summary() results parameters
Hi,
I would like to create variables in R containing parameters of
summary(*Forecast
Results*).
Using the following code:
library(forecast)
data <- AirPassengers
xets <- ets(data, model="ZZZ", damped=NULL)
xfor <- forecast(xets,h=12, level=c(80,95))
summary(xfor)
the output is:
Forecast method: ETS(M,A,M)
Model Information:
ETS(M,A,M)
Call:
ets(y = data, model =
2011 Jun 29
1
R package Forecast
Hello all
First of all I must emphasize that I am fascinated about Forecast package.
However I have difficulty to execute 'ets' procedure. After I write code:
a<-read.table("test.txt", sep="\t", head=T)
b<-matrix(a[,3], nrow=5, ncol=12,
dimnames=list(c("2005","2006","2007","2008","2009"),
2010 Jun 28
1
Exponential Smoothing: Forecast package
Hey,
I am using the ets() function in the forecast package to find out the best
fit parameters for my time-series. I have about 50 sets of time series data.
I'm currently using the function as follows:
ets(x,model="AZZ",opt.crit="mse")
As to my observation about 5-10 of them have been identified by ets to have
a trend and an alpha, beta values have been thrown up -
2010 Jun 04
2
Help on ARFIMA modeling
Please I want to perform full data analysis using ARFIMA model but
I dont know the right package that can perform all the necessary
test on the time series data.
ERIC AIDOO
[[alternative HTML version deleted]]
2007 Sep 25
1
fSeries Garch and Arfima Ox interface
Hello all,
This is a request for help from somebody who has the Ox interfaces working in R.
I am trying to get the Ox interfaces working for Arfima and Garch modelling. However, I am having several problems:
1. The link to download G at rch_v40 does not work. Does anybody have a copy to email to me please?
2. Various guides offer different instructions for installing Ox in the correct place
2010 Jul 19
0
Modelizar inflación con un modelo fraccionalmente integrados ARFIMA-STVGARCH
Hola, ¿hay alguna librería que sirva para modelizar la inflación
utilizando un modelo modelo fraccionalmente integrados
ARFIMA-STVGARCH?
Saludos,
Sebastián.
2008 Jun 18
0
example from arfimaOxFit
Hi,
I got some problem running the example of arfimaOxFit.
The first three line of the examples I run are:
library(Rmetrics)
x = armaSim(model = list(ar = c(0.5, - 0.5), d = 0.3, ma = 0.1), n =
500)
fit = arfimaOxFit(formula = x ~ arfima(2,1))
The error msg is:
Error in eval(expr, envir, enclos) : object "package" not found
Did I do something wrong? Should I install OxConsole with
2012 Oct 25
2
Egarch (1,1) with Student t distribution in RExcel
Hi
I want to implement Egarch (1,1) with t distribution model using RExcel and VBA.
May I know the syntax.
Following is the code that I 'm using.
rinterface.RRun "spec=ugarchspec(variance.model=list(model=(eGARCH),garchOrder=c(1,1)), mean.model=list(armaOrder=c(1,1), arfima=FALSE), distribution.model=(std))"
rinterface.RRun "fit = ugarchfit(Data = b, spec = spec)"