Displaying 20 results from an estimated 5000 matches similar to: "ARIMA with more than one seasonality period"
2012 Jun 25
0
x12 ARIMA Moving Seasonality F Test Issue
I'm having a great deal of trouble replicating x12 ARIMA's F-test used to
detect moving seasonality. According to all literature I could find, the
test is apparently a 2-way ANOVA with year and month as factors for the SI
ratios determined by x12's smoothing algorithm. Note the SI ratio is simply
the detrended series. The summary I get from manually running this 2-way
ANOVA using the
2009 Mar 04
0
arima additive vs multiplicative seasonality
Hello!
I would like to ask whether the seasonality implemented in arima() is additive or multiplicative? I searched a lot, but I could not find an answer to that question, although it has been asked other times too.
Thank you very much for your attention.
Regards,
Martin
2011 Dec 12
1
Question about fitting seasonal ARIMA in R?
Hi all,
I just couldn't find a R function which can fit multiple seasonal
patters... i.e. in the following code:
*arima(x = data, order = c(p, d, q), seasonal = list(order = c(P, D, Q),
period = S), ...
***
*
there can be only one "period", am I right?
What if the data seem to have three different seasonality cycles, 5, 12, 21?
Thanks a lot!
*
[[alternative HTML version
2004 Jul 01
2
[gently off topic] arima seasonal question
Hello R People:
When using the arima function with the seasonal option, are the seasonal
options only good for monthly and quarterly data, please?
Also, I believe that weekly and daily data are not appropriate for seasonal
parm estimation via arima.
Is that correct, please?
Thanks,
Sincerely,
Laura Holt
mailto: lauraholt_983 at hotmail.com
download!
2011 Jun 15
1
Query regarding auto arima
I am using AUTO ARIMA for forecasting. But it is not detecting 'seasonality
term' of its own for any data.
Is there any other method by which we can detect seasonality and its
frequency for any data?
Is there any method through which seasonality and its frequency can be
automatically detected from ACF plot?
--
Siddharth Arun,
4th Year Undergraduate student
Industrial Engineering and
2003 Apr 07
1
filtering ts with arima
Hi,
I have the following code from Splus that I'd like to migrate to R. So far,
the only problem is the arima.filt function. This function allows me to
filter an existing time-series through a previously estimated arima model,
and obtain the residuals for further use. Here's the Splus code:
# x is the estimation time series, new.infl is a timeseries that contains
new information
# a.mle
2011 Jun 15
1
Problem auto.arima() in R
I am using auto.arima() for forecasting.When I am using any in built data
such as "AirPassangers" it is capturing seasonality. But, If I am entering
data in any other format(in vector form or from an excel sheet) it is not
detecting seasonality.
Is there any specific format in which it detects seasonality or I am doing
some thing wrong?
Does data have to be entered in a specific
2004 May 24
0
Seasonal ARIMA question - stat package (formerly ts)
To whom it may concern:
I am trying to better understand the functionality of 'R' when making
arima predictions to avoid any "Black Box" disadvantages.
I'm fitting a seasonal arima model using the following command (having
already loaded 'stat' package).
arimaSeason <-
arima(Data,order=c(1,0,1),seasonal=list(order=c(1,0,1),period=12))
I can then generate
2004 May 24
2
Tramo-seats
Working - among other things- in the field of (short & long term) electricity
forecast, we are now using too many & too expensive pieces of licensed
software: SAS, SPSS, EViews. This "sedimentation" is due to the fact that
my predecessors in the past used different consultant companies to manage
each procedure.
Having attended the useR2004! Conference with the aim of assessing
2010 Oct 18
8
Asterisk to switch on electric heaters remotely?
Hello
I'm sure someone has already tried this: I use a couple of electric
heaters to heat my office.
I'd like to somehow connect them to Asterisk so that I could switch
them on remotely by either calling the IVR or sending an e-mail to the
Asterisk host, so that the room is warm when I get to the office :-)
Any information appreciated.
Thank you.
2007 Nov 08
1
Help me please...Large execution time in auto.arima() function
Hello,
I using the fuction auto.arima() from package forecast to predict the values
of p,d,q and P,D,Q.
My problem is the execution time of this function, for example, a time
series with 2323 values with seasonality to the week take over 8 hours to
execute all the possibilities.
I using a computer with Windows XP, a processor Intel Core2 Duo T7300 and
2Gb of RAM.
2011 Oct 21
2
Arima Models - Error and jump error
Hi people,
I´m trying to development a simple routine to run many Arima models result
from some parâmeters combination.
My data test have one year and daily level.
A part of routine is:
for ( d in 0:1 )
{ for ( p in 0:3 )
{ for ( q in 0:3 )
{ for ( sd in 0:1 )
{ for ( sp in 0:3 )
{ for ( sq in 0:3 )
{
2002 Nov 18
1
Prediction from arima() object (library ts) (PR#2305)
Full_Name: Allan McRae
Version: 1.6.0
OS: Win 2000 P
Submission from: (NULL) (129.215.190.229)
When using predict.Arima in library ts(), it appears differencing is only
accounted for in the first step of prediction and so any trend is not apparent
in the predictions. The example shows the difference between the predictions of
an arima(1,1,1) model and the backtransformed predictions of an
2013 Jul 18
1
Difference between arima(1, 1, 1) of y and arima(1, 0, 1) of diff(y)
Dear all,
When I run an arima(1,1,1) on an I(1) variable, y, I get different estimates to when I first difference the variable myself, e.g y2<-diff(y), and then run arima(1,0,1) on y2. Shouldn't these two approaches give the same output?
Any help will be much appreciated.
george
2013 Apr 15
1
use of simulate.Arima (forecast package)
I would like to simulate some SARIMA models, e.g. a SARIMA (1,0,1)(1,0,1)[4] process.
I installed the package 'forecast', where the function simulate.Arima should do what I am trying to do.
I am not able to understand how it works
Could somebody help me with an example?
thank you
Stefano Sofia
AVVISO IMPORTANTE: Questo messaggio di posta elettronica pu? contenere informazioni
2009 Jun 05
1
Bug in print.Arima and patch
Dear List,
A posting to R-Help exposed this problem with the print method for
objects of class Arima:
> set.seed(1)
> x <- arima.sim(n = 100, list(ar = 0.8897, ma = -0.2279))
> mod <- arima(x, order = c(1,0,1))
> coefs <- coef(mod)
> mod2 <- arima(x, order = c(1,0,1), fixed = coefs)
> mod2
Call:
arima(x = x, order = c(1, 0, 1), fixed = coefs)
Coefficients:
Error
2006 Oct 19
1
predict.Arima question
Hi,
I am trying to forecast a model using predict.Arima
I found arima model for a data set: x={x1,x2,x3,...,x(t)}
arima_model = arima(x,order=c(1,0,1))
I am forecasting the next N lags using predict:
arima_pred = predict(arima_model,n.ahead = N, se.fit=T)
If I have one more point in my series, let's say x(t+1). I do not want to
recalibrate themodel, I just want to forecast the next N-1
2004 May 25
1
Tramo-seats support in GRETL, but not R
On Mon, 24 May 2004 12:00:46 +0200 v.demartino2@virgilio.it wrote:
> Working - among other things- in the field of (short & long term)
electricity
> forecast,
* * *
> we have to comply with the Tramo-seats closed-source procedure
(http://www.bde.es/informes/be/docs/dt0014e.pdf)
> to deal with seasonality of electricity monthly time-series, in line
with
> the methodology
2008 Jan 11
1
question about xreg of arima
Hi,
I am trying to understand exactly what xreg does in arima. The documentation
for xreg says:"xreg Optionally, a vector or matrix of external regressors,
which must have the same number of rows as x." What does this mean with
regard to the action of xreg in arima?
Apparently somehow xreg made the following two arima fit equivalent in R:
arima(x, order=c(1,1,1), xreg=1:length(x))
is
2002 Nov 08
1
extracting response from arima obj
dear all,
Is it possible to extract the response vector from a fitted arima object?
For instance in glm it is allowed, by:
obj.glm<-glm(y~x)
obj.glm$y #the response vector
In arima I can't find it:
obj.arima<-arima(y, order=c(1,0,1)) #say
names(obj.arima) doesn't seem to include the response. Am I wrong?
Many thanks for your help,
best,
vito