Questions based on the following example from the User's Guide, Section 6.4.3., https://estima.com/ratshelp/index.html? ... ction.html (Note: for PERM the results on UG-202 and the intervention.rpf link are different. Running the program file I get N_PERM{0} 0.1284936068 and N_PERM{1} 0.1379586480, not negative coeffs as in UG-202)
Modelling a series with a large increase in the mean level at a specific point in time e.g. a 240% increase.
I get results like
- Code: Select all
boxjenk(diff=1,constant,inputs=1,ar=1) series
# perm 1
Variable Coeff Std Error T-Stat Signif
************************************************************************************
1. CONSTANT 0.004880935 0.000422505 11.55238 0.00000000
2. AR{1} 0.288520147 0.038839065 7.42861 0.00000000
3. N_PERM{0} -1.182720875 0.008725208 -135.55217 0.00000000
4. N_PERM{1} 1.177920073 0.008754546 134.54953 0.00000000
or
- Code: Select all
boxjenk(diff=1,constant,inputs=1,ar=1) series
# temp 1 1
Variable Coeff Std Error T-Stat Signif
************************************************************************************
1. CONSTANT 0.004872733 0.000417972 11.65804 0.00000000
2. AR{1} 0.280859613 0.039655939 7.08241 0.00000000
3. N_TEMP{0} 1.184484584 0.008989514 131.76292 0.00000000
4. N_TEMP{1} -1.111213683 0.086284220 -12.87853 0.00000000
5. D_TEMP{1} 0.945505494 0.070280984 13.45322 0.00000000
as I am already differencing the series I have not used the APPLYDIFFS option. These appear reasonable. Correct?
And, for a series with a 14% decrease, i.e. let's say a temporary drop in the mean, and then back to 'normal' levels.
If specified similar as above, and without APPLYDIFFS
- Code: Select all
Variable Coeff Std Error T-Stat Signif
************************************************************************************
1. CONSTANT 0.001497142 0.000396097 3.77974 0.00016635
2. AR{1} 0.884178851 0.024865579 35.55835 0.00000000
3. MA{1} -0.586593602 0.042356423 -13.84899 0.00000000
4. N_PERM{0} 0.149402878 0.003414694 43.75293 0.00000000
5. N_PERM{1} -0.159008357 0.003442834 -46.18531 0.00000000
and as a temp
- Code: Select all
Variable Coeff Std Error T-Stat Signif
************************************************************************************
1. CONSTANT 0.001667754 0.000361307 4.61589 0.00000443
2. AR{1} 0.883954710 0.025024540 35.32351 0.00000000
3. MA{1} -0.609878494 0.042512854 -14.34574 0.00000000
4. N_TEMP{0} -0.144644152 0.003415858 -42.34490 0.00000000
5. N_TEMP{1} 0.137009282 0.007880181 17.38657 0.00000000
6. D_TEMP{1} 0.759636356 0.055720977 13.63286 0.00000000
Are these reasonable?
thanks,
Amarjit