In order to do that I wanted to create an efficient Table so that I can compare these systems that have different specifications and estimate similar but sometimes slightly different parameters. In order to do that and facilitate the export to LateX I wanted to export a CSV from eviews.
I am not that familiar with eviews programming which is why the first thing I tried was this inelegant solution:
Code: Select all
output(s) testspool 'send output to a spool called testspool
%system_list_3f = @wlookup("ces_3f*","system") 'store names of systems in a vector
for %sys {%system_list_3f}
testspool.append %sys
next
I now looked into calling the necessary values directly and building a table from scratch, which seems like a good way to go about it. One problem however, is that I can't extract @pvals from the systems like i can with @coefs and @stderrs. What are your recommendations as to how I go about that? I'm running Eviews 8.
Edit: I'd also like to extract the names of the coefficients. I seem to not be able to do that unfortunately, @coeflist from the equation object does not work here. Does anybody know a workaround?
