Search found 101 matches

by adarshad
Wed Feb 02, 2022 10:42 am
Forum: Programming
Topic: How can I retrieve statistics from a View of an object?
Replies: 12
Views: 61165

Re: How can I retrieve statistics from a View of an object?

eq!i.wald c(6)=0


FOR i=28

I want to store pvalues in word file or atleast in a table or somewhere together

can someone help
by adarshad
Sat Jan 29, 2022 9:08 am
Forum: Programming
Topic: How can I retrieve statistics from a View of an object?
Replies: 12
Views: 61165

Re: How can I retrieve statistics from a View of an object?

and store the pvalue and chi square value for all equations
by adarshad
Sat Jan 29, 2022 9:05 am
Forum: Programming
Topic: How can I retrieve statistics from a View of an object?
Replies: 12
Views: 61165

Re: How can I retrieve statistics from a View of an object?

i want to run wald test for c3=0 hypothesis for the output of the equations and then store them ...can someone refer to the code
by adarshad
Sat Jan 29, 2022 9:02 am
Forum: Programming
Topic: How can I retrieve statistics from a View of an object?
Replies: 12
Views: 61165

Re:

Many of our Views, such as tests from an equation, do not have an inbuilt way to retrieve the statistics. However you can always retrieve values by first freezing the view into a table, and then referencing the cell containing that value. For example: freeze(tab1) eq01.wald c(1)=0 scalar f_pvalue =...
by adarshad
Tue May 04, 2021 9:53 am
Forum: Programming
Topic: overwrite command in append spool
Replies: 1
Views: 2636

overwrite command in append spool

I think the code should overwrite the object in spool but it errs


Code: Select all

A_COINT1 already exists in the destination spool in "DO_
 SPOOLCA.APPEND(NAME=A_COINT1, MODE=OVERWRITE)
 A_COINT1".


can somebody suggest anything?
by adarshad
Mon May 03, 2021 12:09 pm
Forum: Programming
Topic: saving all equations as tables in a workfile
Replies: 7
Views: 5337

Re: saving all equations as tables in a workfile

thankyou it helped me alot;;its easier instead of copying one by one
by adarshad
Mon May 03, 2021 7:33 am
Forum: Programming
Topic: saving all equations as tables in a workfile
Replies: 7
Views: 5337

Re: saving all equations as tables in a workfile

ANY EXAMPLE WILL BE HIGHLY HELPFUL
by adarshad
Sun May 02, 2021 12:48 pm
Forum: Programming
Topic: saving all equations as tables in a workfile
Replies: 7
Views: 5337

Re: saving all equations as tables in a workfile

!rowcounter =1 %eqlist=@wlookup("*","equation") 'make a list of all equations in workfile for !i=1 to @wcount(%eqlist) 'cycle through the list one at a time freeze(table{!i}ardl_a) eq{!i}ardl_a.results !rowcounter = !rowcounter+1 next I used this program to store my equations IS...
by adarshad
Fri Apr 30, 2021 9:09 am
Forum: Programming
Topic: saving all equations as tables in a workfile
Replies: 7
Views: 5337

Re: saving all equations as tables in a workfile

Code: Select all

%eqlist=@wlookup("*","equation") 'make a list of all equations in workfile
for !i=1 to @wcount(%eqlist) 'cycle through the list one at a time
freeze(tabname) eq{!i}ardl_a.results 
!rowcounter = !rowcounter+1
next


what is tabnamehere..my workfile is ARDL&
by adarshad
Thu Apr 29, 2021 6:27 pm
Forum: Programming
Topic: saving all equations as tables in a workfile
Replies: 7
Views: 5337

saving all equations as tables in a workfile

is there any command to save all equations as tables in a workfile with the same name as equation
by adarshad
Thu Apr 29, 2021 3:36 pm
Forum: Programming
Topic: ARDL FOR 30 EQUATIONS
Replies: 21
Views: 10366

Re: ARDL FOR 30 EQUATIONS

sorry but any suggestion
i am running the program but its not selecting the ardl lag for longrun ardl bound
thanks for your review
by adarshad
Thu Apr 29, 2021 1:38 pm
Forum: Programming
Topic: ARDL FOR 30 EQUATIONS
Replies: 21
Views: 10366

Re: ARDL FOR 30 EQUATIONS

please help me to write this program so that it performs ardl and then uses selected lag length to ardl long bound cointegration with same lag length and error correction form !maxlags =6 !bestlag_A= 0 !bestlag_B= 0 !bestlag_C= 0 !bestlag_d= 0 !row=4 for !i=1 to 30 !aic = 99999999 for !lag_A= 0 to !...
by adarshad
Thu Apr 29, 2021 12:56 pm
Forum: Programming
Topic: ARDL FOR 30 EQUATIONS
Replies: 21
Views: 10366

Re: ARDL FOR 30 EQUATIONS

next
by adarshad
Thu Apr 29, 2021 11:09 am
Forum: Programming
Topic: ARDL FOR 30 EQUATIONS
Replies: 21
Views: 10366

Re: ARDL FOR 30 EQUATIONS

next
by adarshad
Thu Apr 29, 2021 9:44 am
Forum: Programming
Topic: ARDL FOR 30 EQUATIONS
Replies: 21
Views: 10366

Re: ARDL FOR 30 EQUATIONS

next

Go to advanced search