Dear Stata users,
I recently performed a non-recursive structural equation model in Stata, which yielded successful results. However, I am encountering difficulties when attempting to export the standardized results into a Word document. I mean, even after adding the option "standardized", what I output is still the results before standardization. I'm not sure where the standardized results are stored, nor do I know how to export them. The command I used is as follows:
If any of you have experience with this or can offer advice on successfully exporting standardized results to a Word document, I would greatly appreciate your help.
Thank you for taking the time to read this.
Best regards,
Mindy
I recently performed a non-recursive structural equation model in Stata, which yielded successful results. However, I am encountering difficulties when attempting to export the standardized results into a Word document. I mean, even after adding the option "standardized", what I output is still the results before standardization. I'm not sure where the standardized results are stored, nor do I know how to export them. The command I used is as follows:
Code:
sem ($y1 <- $y2 $x1 $x5 $x7) ($y2 <- $y1 $x2 $x6 $x7)($y3 <- $y4 $y1 $y2 $x1 $x5 $x7) ($y4 <- $y3 $y1 $y2 $x2 $x6 $x7), cov(e.$y1*e.$y2) cov(e.$y3*e.$y4) nocapslatent standardized estimates store SEM outreg2 [SEM] using $root\Results\result1, word stats(coef se) replace dec(3) 2aster
Thank you for taking the time to read this.
Best regards,
Mindy
Comment