Hello,
After rewriting my SPSS-syntax to Stata-syntax and working with Stata for a while, I have to redo an analysis that was originally programmed in SPSS. The SPSS-syntax is:
compute i_vo=mean(vo)
compute ii_vo=(i_vo*n-vo)/(n-1)
For the first command I now use in STATA:
egen i_vo = mean(vo)
But how can I rewrite the second SPSS-command in STATA?
Thanks for your help!
Daniƫlle
After rewriting my SPSS-syntax to Stata-syntax and working with Stata for a while, I have to redo an analysis that was originally programmed in SPSS. The SPSS-syntax is:
compute i_vo=mean(vo)
compute ii_vo=(i_vo*n-vo)/(n-1)
For the first command I now use in STATA:
egen i_vo = mean(vo)
But how can I rewrite the second SPSS-command in STATA?
Thanks for your help!
Daniƫlle
Comment