Dear Statalist-Users,
I am running a looped regression:
Now I wish to store the p-values of "Neg_Words" with the corresponding x of varlist ER_1_Day- Ln_ER_12_Month in a table/matrix.
Any advice how to do so? Thanks for your help!
I am running a looped regression:
Code:
foreach x of varlist ER_1_Day- Ln_ER_12_Month { foreach y of varlist Neg_Words { quietly regress `x' `y' LN_Market_Cap LN_Price_to_Book Momentum estimates store Coeff_`x'_Neg } }
Any advice how to do so? Thanks for your help!
Comment