I am new to Eviews and would greatly appreciate any help with the following query.
I purchased Eviews last week based on the software's ability to perform State Space modeling. However, I could only afford the basic student package - version 6. I note that there are certain limits on the student version - notably a maximum of 10 equations. Perhaps this limitation is to blame for the trouble I am having in my problem which I have detailed below?
Basically, I am estimating a simple economic demography model involving birth rates, death rates and real wages. Here is my code:
Code: Select all
@signal lws = c(1)*lpop + sv1 + sv2
@state sv1 = sv1(-1) + sv3(-1)
@state sv3 = sv3(-1) + [var=exp(c(2))]
@state sv2 = c(4)*sv2(-1) + c(5)*sv4(-1) + [var=exp(c(3))]
@state sv4 = sv2(-1)
@signal deathrate = sv5 + c(6)*(lws(-1) + dlws) + c(7)*lws(-1) + c(8)*lws(-2) + c(9)*lws(-3) + c(10)*lws(-4) + sv6
@state sv5 = sv5(-1) + [var=exp(c(11))]
@state sv6 = c(12)*sv6(-1) + c(13)*sv7(-1) + [var=exp(c(14))]
@state sv7 = sv6(-1)
@signal birthrate = sv8 + c(15)*(lws(-1) + dlws) + c(16)*lws(-1) + c(17)*lws(-2) + c(18)*lws(-3) + c(19)*lws(-4) + sv9
@state sv8 = sv8(-1) + [var=exp(c(20))]
@state sv9 = c(21)*sv9(-1) + c(22)*sv10(-1) + [var=exp(c(23))]
@state sv10 = sv9(-1)
@param c(1) -1.7 c(2) -12.0 c(3) -4.9 c(4) 0.74 c(5) -0.19 c(6) -0.53 c(7) -6.26 c(8) 0.3 c(9) 3.6
c(10) 0.896 c(11) -15.707 c(12) 0.545 c(13) -0.091 c(14) -11.396 c(15) 10.531 c(16) -6.174 c(17) 1.689 c(18) -0.73
c(19) -1.89 c(20) -15.016 c(21) 0.495 c(22) 0 c(23) -13.073
Would anybody be able to tell me whether these issues are due to the student version being used or is there something else which needs to be corrected please? This model has previously been estimated in the literature - so it is somewhat puzzling why I am having so much trouble with it.
Thanks
Alan
