cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
ChrisC
Level I

ARIMA(1,0,0) output Parameter Estimates - I do not understand the output

I ran a simple AR(1) model on 24 rows of trending data just to see the output.  It provided the AR(1) coefficient and the intercept - however, they made no sense to me.  For example, I thought that if the output for an AR(1) is 0.8 and Intercept = 105, then the forecasting equation would be for y(t) = 105 + 0.8*y(t-1).  But the output of the parameter estimates do not fit this.  What am I missing?  Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
jiancao
Staff

Re: ARIMA(1,0,0) output Parameter Estimates - I do not understand the output

According to ARIMA (http://www.jmp.com/support/help/13-2/Statistical_Details_for_ARIMA_Models.shtml#409330),

So, the AR(1) model you fit is:  Y(t)-105=0.8*(Y(t-1)-105) +e(t), or  Y(t)=21+0.8*Y(t-1)+e(t)

 

View solution in original post

2 REPLIES 2
jiancao
Staff

Re: ARIMA(1,0,0) output Parameter Estimates - I do not understand the output

According to ARIMA (http://www.jmp.com/support/help/13-2/Statistical_Details_for_ARIMA_Models.shtml#409330),

So, the AR(1) model you fit is:  Y(t)-105=0.8*(Y(t-1)-105) +e(t), or  Y(t)=21+0.8*Y(t-1)+e(t)

 

ChrisC
Level I

Re: ARIMA(1,0,0) output Parameter Estimates - I do not understand the output

Perfect!  Thanks

 

Recommended Articles