Page 1 of 1

Turn off automatic tables output from contegration tests

Posted: Sat Aug 07, 2010 8:28 am
by raphbrun
Hi,

I am running cointegration tests for a number of groups within a program. For each test, an automatic created table appears on screen with its outcome. This is problematic when the number of tests is large, thus the number of tables is large.

How can I turn off the automatic creation of tables within a program?

Thanks,
Raphael

Re: Turn off automatic tables output from contegration tests

Posted: Sat Aug 07, 2010 9:37 am
by EViews Gareth
Could you post the code you currently have?

Re: Turn off automatic tables output from contegration tests

Posted: Sat Aug 07, 2010 12:45 pm
by raphbrun
Sure,

Below is a simpler version of the code I have. Each time the food_{%i}.coint command performs, a new table pops up on the screen. I would like to avoid it.

for %i ctry1 ctry2
group food_{%i}
food_{%i}.add lnuvi_{%i} lnfx_{%i} lnppi_{%i}
food_{%i}.coint(b,save = coint_food_{%i})
next

Cheers,
Raphael

Re: Turn off automatic tables output from contegration tests

Posted: Sat Aug 07, 2010 1:28 pm
by EViews Gareth

Code: Select all

for %i ctry1 ctry2 group food_{%i} food_{%i}.add lnuvi_{%i} lnfx_{%i} lnppi_{%i} do food_{%i}.coint(b,save = coint_food_{%i}) next

Re: Turn off automatic tables output from contegration tests

Posted: Sun Aug 08, 2010 2:10 pm
by raphbrun
Thanks so much. This wil be very helpful!