Page 1 of 1

Asking command to view result of panel

Posted: Thu Feb 27, 2014 6:31 am
by Gimel
Hi, I am a novice in eviews and still learning (hard :) actually. I recently stumbled on the way to do the same thing using command.
I did panel estimation and I can view the result of fix / Random effects through interactive window by doing:
View - Fixed/Random Effects - Cross-section effects OR Period effects.

But I cannot view that using command programming. Is there anyone know how to do it?

Second question: How to put residcor result method to matrix? I can only freeze them into a table but cannot put them into a matrix by doing:

matrix mat = eqsur.residcor

Eviews will issue Syntax error

Gimel

Re: Asking command to view result of panel

Posted: Thu Feb 27, 2014 9:07 am
by EViews Gareth
1) eqname.effects (if you actually have a panel equation. For a pool object, I'm not sure you can).

2) I think you'll have to calculate the correlation matrix yourself from the residuals of the pool object.

Re: Asking command to view result of panel

Posted: Thu Feb 27, 2014 10:51 am
by EViews Gareth
For part 2):

Code: Select all

p.makeresids pr? group g pr? g.cor(ucor,out=mat)
where p is the name of your pool object.

Re: Asking command to view result of panel

Posted: Thu Feb 27, 2014 11:15 am
by EViews Glenn
The result will be in matcorr.

Note that pools display the effects in the main estimation output window.