Dear Statalisters,
I am running a regression and testing that coefficients are equal. I would like the asterisks to be displayed on the p-value of F-statistic that I report in the table. Please find below my code:
reg income training experience, r cluster(urbancode)
test training=experience
local p`y'a=r(p)
outreg2 using "$dout/pval12.xls", addstat(Adjusted R-squared, e(r2_a), "training=experience", `p`y'a') dec(2) replace ctitle(`i')
However, the pvalue of "training=experience" is not displaying asterisks for statistical significance. How I can add asterisks, please?
Your help is appreciated.
Many thanks.
I am running a regression and testing that coefficients are equal. I would like the asterisks to be displayed on the p-value of F-statistic that I report in the table. Please find below my code:
reg income training experience, r cluster(urbancode)
test training=experience
local p`y'a=r(p)
outreg2 using "$dout/pval12.xls", addstat(Adjusted R-squared, e(r2_a), "training=experience", `p`y'a') dec(2) replace ctitle(`i')
However, the pvalue of "training=experience" is not displaying asterisks for statistical significance. How I can add asterisks, please?
Your help is appreciated.
Many thanks.
Comment