I do panel estimations. I have 4x8 (=NxK) different estimations. 4 different dependent variables times 8 different regressions.
I want to create a matrix table(table1), where I present the main findings.
table1(1,K) = coefficient of LOG(WS(-1)) / (coefficient LOG(consumption) * (-1))
so the long-run relationship in an ECM model between WS and consumption. What I want to program now, is that this result is in the first row in 8 different columns.
second row is investment (same procedure)
third row (which i might have troubles with as well) is the sum of the first two rows.
that is what i got so far:
Code: Select all
matrix(8,5) table1
for !i = 1 to 8
for !h = 1 to 3
table1(!h,!i) = {i}.@coef(!h)
next
next
best
YK
