Search found 102 matches
- Wed May 29, 2024 7:17 pm
- Forum: Econometric Discussions
- Topic: Test of Difference
- Replies: 1
- Views: 39034
Test of Difference
Sir I have run a regression, where I estimated effect of two independent variables A and B on an outcome variable C. How can I compare the regression coefficients of A and B to estimate whether the effect of A is greater or whether B has a stronger impact on C and whether both coefficients obtained ...
- Wed Feb 02, 2022 10:42 am
- Forum: Programming
- Topic: How can I retrieve statistics from a View of an object?
- Replies: 12
- Views: 78301
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
- Sat Jan 29, 2022 9:08 am
- Forum: Programming
- Topic: How can I retrieve statistics from a View of an object?
- Replies: 12
- Views: 78301
Re: How can I retrieve statistics from a View of an object?
and store the pvalue and chi square value for all equations
- Sat Jan 29, 2022 9:05 am
- Forum: Programming
- Topic: How can I retrieve statistics from a View of an object?
- Replies: 12
- Views: 78301
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
- Sat Jan 29, 2022 9:02 am
- Forum: Programming
- Topic: How can I retrieve statistics from a View of an object?
- Replies: 12
- Views: 78301
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 =...
- Tue May 04, 2021 9:53 am
- Forum: Programming
- Topic: overwrite command in append spool
- Replies: 1
- Views: 3734
overwrite command in append spool
I think the code should overwrite the object in spool but it errs
can somebody suggest anything?
Code: Select all
A_COINT1 already exists in the destination spool in "DO_
SPOOLCA.APPEND(NAME=A_COINT1, MODE=OVERWRITE)
A_COINT1".- Mon May 03, 2021 12:09 pm
- Forum: Programming
- Topic: saving all equations as tables in a workfile
- Replies: 7
- Views: 8177
Re: saving all equations as tables in a workfile
thankyou it helped me alot;;its easier instead of copying one by one
- Mon May 03, 2021 7:33 am
- Forum: Programming
- Topic: saving all equations as tables in a workfile
- Replies: 7
- Views: 8177
Re: saving all equations as tables in a workfile
ANY EXAMPLE WILL BE HIGHLY HELPFUL
- Sun May 02, 2021 12:48 pm
- Forum: Programming
- Topic: saving all equations as tables in a workfile
- Replies: 7
- Views: 8177
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...
- Fri Apr 30, 2021 9:09 am
- Forum: Programming
- Topic: saving all equations as tables in a workfile
- Replies: 7
- Views: 8177
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- Thu Apr 29, 2021 6:27 pm
- Forum: Programming
- Topic: saving all equations as tables in a workfile
- Replies: 7
- Views: 8177
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
- Thu Apr 29, 2021 3:36 pm
- Forum: Programming
- Topic: ARDL FOR 30 EQUATIONS
- Replies: 21
- Views: 15196
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
i am running the program but its not selecting the ardl lag for longrun ardl bound
thanks for your review
- Thu Apr 29, 2021 1:38 pm
- Forum: Programming
- Topic: ARDL FOR 30 EQUATIONS
- Replies: 21
- Views: 15196
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 !...
- Thu Apr 29, 2021 12:56 pm
- Forum: Programming
- Topic: ARDL FOR 30 EQUATIONS
- Replies: 21
- Views: 15196
- Thu Apr 29, 2021 11:09 am
- Forum: Programming
- Topic: ARDL FOR 30 EQUATIONS
- Replies: 21
- Views: 15196
