Search found 76 matches

by fmgoto
Tue Aug 18, 2009 6:04 am
Forum: Programming
Topic: Defining Path
Replies: 15
Views: 22800

Re: Defining Path

What if I need to specify paths that include spaces (" "), such as "C:/Program Files". %root = "C:\Program Files" %month = "2009_08" %folder = %root + %month cd %folder The thing, though, is that the "cd %folder" command considers "C:\Program &q...
by fmgoto
Mon Aug 17, 2009 1:02 pm
Forum: Estimation
Topic: X-12 ARIMA PICKMDL Spec
Replies: 0
Views: 2259

X-12 ARIMA PICKMDL Spec

Hey, I have been trying to run X-12 with the PICKMDL spec. It seems that Eviews 6.0 is embeded with a x12a.exe version that does not support the PICKMDL spec. Is that it? Can I simply download the "new" x12a.exe from Census Bureau and run it within Eviews? I thought perhaps the SPC file sh...
by fmgoto
Thu Aug 13, 2009 2:28 pm
Forum: Programming
Topic: Merging series
Replies: 2
Views: 3824

Re: Merging series

I am not quite sure I understood your question, but seems like easier to work things out in Excel (vlookup) before loading data to Eviews. Is that it?
by fmgoto
Thu Jul 23, 2009 2:23 pm
Forum: Programming
Topic: Limitation to Iteration?
Replies: 2
Views: 4034

Limitation to Iteration?

Are there limitations to the number of iterations Eviews runs before haulting?

Eviews simply stops working for some erason I dont know. I suspect, for example, that tables do not support more than one million rows. Is that so?

Are there other restrictions?

Thank You, Fabio
by fmgoto
Thu Jul 23, 2009 12:03 pm
Forum: Programming
Topic: COEFFICIENTS AND P-VALUES FROM OLS
Replies: 4
Views: 6634

Re: COEFFICIENTS AND P-VALUES FROM OLS

I thought so... Thank You!
by fmgoto
Thu Jul 23, 2009 11:31 am
Forum: Programming
Topic: COEFFICIENTS AND P-VALUES FROM OLS
Replies: 4
Views: 6634

Re: COEFFICIENTS AND P-VALUES FROM OLS

How did you solve it?

I need to retrieve the p-value from thousands of OLS and store them in a table.

Thank You, Fabio
by fmgoto
Thu May 07, 2009 11:47 am
Forum: Programming
Topic: Saving Program within Workfile
Replies: 4
Views: 7062

Re: Saving Program within Workfile

Gareth,I need a command so that the program will save itself. Thank You!
by fmgoto
Wed May 06, 2009 12:16 pm
Forum: Programming
Topic: Saving Program within Workfile
Replies: 4
Views: 7062

Saving Program within Workfile

I usually run an Eviews code by clicking New/File/Program and hitting "Run". However, I need to store these programs (with minor changes) every time I run each program. I wonder if there is any way I could self-save the program I ran (or embed it within the same workfile Text object). Than...
by fmgoto
Fri Apr 03, 2009 1:56 pm
Forum: Programming
Topic: Including %program
Replies: 1
Views: 2947

Including %program

Hey, is it possible to include sub-programs whose file name is defined as a string, such as %program? Thanks in advancde, Fabio

We are trying to work with:

%program = "" + %path + "/" + %filename + ""
include %program
by fmgoto
Fri Apr 03, 2009 5:53 am
Forum: Programming
Topic: Defining Path
Replies: 15
Views: 22800

Re: Defining Path

Gareth, I'm back again! We are working with Eviews in Brazil and there are some special characters Eviews does not recognizes when running from the command prompt. Surprisingly, that is not an issue when running the exact same code line by line. I wonder if there is some ASC or ANSI to EVIEWS table ...
by fmgoto
Wed Jan 28, 2009 4:23 am
Forum: Programming
Topic: Granger Causality's p-value
Replies: 2
Views: 4594

Re: Granger Causality's p-value

Thanks, but... disappointing!
by fmgoto
Tue Jan 27, 2009 4:20 am
Forum: Programming
Topic: Granger Causality's p-value
Replies: 2
Views: 4594

Granger Causality's p-value

Can I (how) save output of Granger Causality Tests? How about Block-Exogeneity?

table(!p_max,2) output

for !i = 1 to !p_max
group_example.cause(!i)
output(!i,2) = @granger_pvalue
next


Thanks!
by fmgoto
Fri Jan 23, 2009 2:26 pm
Forum: Programming
Topic: Defining Path
Replies: 15
Views: 22800

Re: Defining Path

GREAT! Thanks!
by fmgoto
Fri Jan 23, 2009 2:01 pm
Forum: Programming
Topic: Defining Path
Replies: 15
Views: 22800

Re: Defining Path

That is (a lot) closer! Except for I need to concatenate two strings: the whole path and the subfolder path. That is, %path = "C:/.../" read(...) %path + "spreadsheet.xls" 2 How do I concatenate the main %path and the subfolder + spreadsheet.xls within the same command (read, wri...
by fmgoto
Fri Jan 23, 2009 11:56 am
Forum: Programming
Topic: Defining Path
Replies: 15
Views: 22800

Re: Defining Path

Sort of.

What if I need to read, write and save into a given folder?

cd "c/data/"
read(...) "c/data/subfolder/spreadsheet.xls" 2
write(...) "c/data/output/spreadsheet2.xls" y_hat
wfsave "c/data/subolder/spreadsheet3.xls"

Thanks!

Go to advanced search