🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

how to input real data into arima model?

User: "marielong"
New Altair Community Member
Updated by Jocelyn

hello

I am a beginner of arima, and wanna ask some question 

a.png

after I found the arima (1,0,1) coefficients, how can I actually use them into real data like below in excel:

b.png

I've read many of the articles, they only provide the original algebra equation,

image

something like this, which I wanna know is how to use in pratical.

If I am gonna predict the price of date 15, which column should multiply which coefficient to make the result come out?

 

Thanks very much

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "earmijo"
    New Altair Community Member
    Accepted Answer

    Your estimated model is:

    Y(t) = 4.17 + 0.70* Y(t-1) + e(t) - 0.71* e(t-1) 

     

    This means you need a series for Y(t) and another one for e(t). It looks to me the program you are using is Stata (and some in this forum will ask : Why didn't you ask the question in a Stata forum).

     

    You can get the series for the residual ( e(t) above) using:

     

    predict r, resid

     

    Now plug in the values and you'll get your forecast. 

     

    Of course, you could directly get the forecast in Rapidminer or in Stata with the appropriate command. 

     

    predict r, resid