I am a beginner in using EViews (hence, this is my first post here). I have run some linear regression models but now it comes to including a more complex model. It is panel data about the vehicles per capita in several countries in the world over a certain period of time. I try to test a model which I have found in this very paper.
Basically they test for the influence of income on vehicle rates with the help of a Gompertz function which looks like this:
Code: Select all
V(t) = gamma*teta*exp(alpha*exp(beta*GDP(t)))+(1-teta)*V(t-1)- gamma = maximum saturation (let's assume that it is 850 vehicles per 1,000 persons)
- teta = speed of adjustment
- alpha, beta = as usual
They state that they used an "iterative least squares" method of which I assume that it is just normal OLS which is iterative because of the inclusion of the previous period. Is that correct?
Anyway, I tried to implement this model into EViews by entering an equation (in Estimate Equation) and using least squares:
Code: Select all
v = 850*c(1)*exp(c(2)*exp(c(3)*gdp))+(1-c(1))*v(-1)If there might be any mistakes in my post, I am not a native speaker, so sorry for that, too.
Thank you very much!
