Hi,
I am conducting a descriptive analysis on Stata.
The code is like
egen total = total(sales), by(name AAA)
egen total = total(sales), by(name BBB)
egen total = total(sales), by(name CCC)
Basically, there are 100 something rows of codes (AAA, BBB, .....) to analyse the sales.
However, some of the raw, for example, may have no observations, which will stop the analysis process (no observations r(2000)).
Is there any command that I can not let the program stop and finish all the analysis?
Thanks
Dan
I am conducting a descriptive analysis on Stata.
The code is like
egen total = total(sales), by(name AAA)
egen total = total(sales), by(name BBB)
egen total = total(sales), by(name CCC)
Basically, there are 100 something rows of codes (AAA, BBB, .....) to analyse the sales.
However, some of the raw, for example, may have no observations, which will stop the analysis process (no observations r(2000)).
Is there any command that I can not let the program stop and finish all the analysis?
Thanks
Dan

Comment