Search found 13 matches
- Mon Dec 12, 2016 3:12 am
- Forum: Other Time Series Analysis
- Topic: exponential Smoothing prevision sample fit reestimation
- Replies: 5
- Views: 9675
Re: exponential Smoothing prevision sample fit reestimation
Sorry, I think I'm not clear. For the prevision out of sample I use Forecasts and steps, and for the prevision in sample I use FItted. But with fitted I can't use steps, so I can't define how step I want for my in sample prevision.
- Sun Dec 11, 2016 3:17 pm
- Forum: Other Time Series Analysis
- Topic: exponential Smoothing prevision sample fit reestimation
- Replies: 5
- Views: 9675
Re: exponential Smoothing prevision sample fit reestimation
But I can't use fitted beacause I want to put diferent step for the in sample and not the out of sample
- Sun Dec 11, 2016 12:59 pm
- Forum: Other Time Series Analysis
- Topic: exponential Smoothing prevision sample fit reestimation
- Replies: 5
- Views: 9675
exponential Smoothing prevision sample fit reestimation
Hello, I try to make a prevision with an exponential smoothing but I have a probleme with the sample fit with reestimation prevision. For the prevision I do: do time = prevstart,prevend-stepsahead esmooth(trend=exponential,estimate, resids=resexo2,fitted=forecast1) ev 1960:1 * forecast(model= ?????,...
- Sun Dec 11, 2016 6:00 am
- Forum: Help With Programming
- Topic: Box-Jenkins rats 8.0 and 9.1
- Replies: 1
- Views: 80940
Box-Jenkins rats 8.0 and 9.1
Hello, I don't understand why but with two diferent version of rats, I haven't the same results. In Rats 8.0: boxjenk(constant,ar=1, ma=1,maxl,diffs=1,regressor) pib 1960:01 * resexo # trend trend2 Box-Jenkins - Estimation by ML Gauss-Newton Convergence in 20 Iterations. Final criterion was 0.000001...
- Sun Dec 11, 2016 3:55 am
- Forum: General Econometrics
- Topic: Stabilized an arma
- Replies: 1
- Views: 7555
Stabilized an arma
Hello,
I have an ARMA regression that is not stable, what can I do to make it stable? Differentiate it? Add a trend?
I have an ARMA regression that is not stable, what can I do to make it stable? Differentiate it? Add a trend?
- Sat Dec 10, 2016 12:36 pm
- Forum: RATS Procedures
- Topic: FLUX—General Nyblom fluctuations test
- Replies: 4
- Views: 39195
Re: FLUX - General Nyblom fluctuations test
I don't understand the interpretation of the test. If the p-value is <5% ther is stability or if the p-value is >5%?
- Sat Dec 10, 2016 12:33 pm
- Forum: General Econometrics
- Topic: Low rationality test
- Replies: 1
- Views: 6559
Low rationality test
Hello, I would like to do my low rationnality test with: linreg ev 1968:1 2014:1 # constant intrasrmere restrict 2 # 1 # 1 0 # 2 # 1 1 But I don't understant if i should use a linreg like this because I make my prevision with an arma model: boxjenk(constant,ar=0, ma=3, maxl, regressors,define=eveq) ...
- Thu Dec 08, 2016 12:27 pm
- Forum: Other Time Series Analysis
- Topic: Stability Test in ARMA model
- Replies: 1
- Views: 5657
Stability Test in ARMA model
Hello,
I have a question about stability test (@stabtest et Cusum), I know how to do this tests with linear regression but I don't know how to do with an ARMA.
I have a question about stability test (@stabtest et Cusum), I know how to do this tests with linear regression but I don't know how to do with an ARMA.
- Sun Dec 04, 2016 12:44 pm
- Forum: Help With Programming
- Topic: Regression in Rats
- Replies: 8
- Views: 21803
Re: Regression in Rats
Thank you again!
I have watch the regression output and I find what was diferent. I have exactly the same think that in R with:
set ind = t<1980:1
set pibd = pib*ind
set pibsqd = pib*pib*ind
set pibsqd2 = pib*pib
linreg ev 1960:1 2014:1 resmere2
# constant pib pibsqd2 ind pibd pibsqd
I have watch the regression output and I find what was diferent. I have exactly the same think that in R with:
set ind = t<1980:1
set pibd = pib*ind
set pibsqd = pib*pib*ind
set pibsqd2 = pib*pib
linreg ev 1960:1 2014:1 resmere2
# constant pib pibsqd2 ind pibd pibsqd
- Sun Dec 04, 2016 4:37 am
- Forum: Help With Programming
- Topic: Regression in Rats
- Replies: 8
- Views: 21803
Re: Regression in Rats
I try to do a linear regression on ev with pib + pib² on the first part and pib on the second part. Sorry if I am not clear, I have some difficulty to explain myself, especially in English. Note that R has a negative outlier at entry 9, and there's nothing at all like that in the RATS output. → That...
- Sat Dec 03, 2016 3:41 pm
- Forum: Help With Programming
- Topic: Regression in Rats
- Replies: 8
- Views: 21803
Re: Regression in Rats
Does the R regression include an intercept by default? I don't know. What regression are you trying to run? In R, I'm doing: regev <-lm(evts ~ pibts+(pibts+pibts2)*ind(x)) And for the residuals I have : http://img11.hostingpics.net/pics/623682residusR.png ANd for the CUSUM test: http://img11.hosting...
- Sat Dec 03, 2016 11:43 am
- Forum: Help With Programming
- Topic: Regression in Rats
- Replies: 8
- Views: 21803
Re: Regression in Rats
Thank you very much. I still have not exactly the same thing as with R but I will seek a solution thanks to your indications 
- Sat Dec 03, 2016 8:11 am
- Forum: Help With Programming
- Topic: Regression in Rats
- Replies: 8
- Views: 21803
Regression in Rats
Hello, I have a program under R that I try to perform on ratz but I can't get the same result. My R program: x <- 1960:2014 ind <- function(x) ifelse (x<1980, TRUE, FALSE) pibts2 <- pibts*pibts regev <-lm(evts ~ pibts+(pibts+pibts2)*ind(x)) summary(regev) res2<- residuals(regev) plot(res2, type = &q...