I'm trying to make a crosstabulation with outreg2.
When I use an example I found online, everything works fine
When I try it on my own data, I get a bunch of stars in the output
Any thoughts on what is happening here?
When I use an example I found online, everything works fine
Code:
sysuse auto, clear egen mileage=cut(mpg), group(10) outreg2 mileage foreign using x.doc, replace cross
Code:
outreg2 B1 B11 using "crosstab.doc", replace cross

Comment