Dear Statalist,
I am using outreg2 command to construct my regression table as follow:
In order to economize the space, I am replacing stars(***) which indicates the level of significance with symbols a, b, c for for 1, 5 and 10% level of significance respectively. However from my above command my result looks as follow
In the table above, symbols " a, b, and c " which indicates level of significance should superscripted, meaning that 1.340a is supposed to be displayed as 1.340a.
Your help will be highly appreciated. Many thanks.
I am using outreg2 command to construct my regression table as follow:
Code:
biprobit (lp = $x1) (tel = $x2), robust
outreg2 using Table_A.doc,adds(Rho,e(rho), Loglikelihood, e(ll)) dec(3) ///
drop(i.dcode) addtext(District Dummy, Yes) symbol(a,b,c) replace
| tel | 1.340a | |
| (0.222) | ||
| rad | 0.173a | 0.059 |
| (0.048) | (0.042) | |
| ele | 0.497a | 0.900a |
| (0.106) | (0.066) |
In the table above, symbols " a, b, and c " which indicates level of significance should superscripted, meaning that 1.340a is supposed to be displayed as 1.340a.
Your help will be highly appreciated. Many thanks.

Comment