Felix Kaysers I'm not sure I understand the issue in #240: I'm especially not sure I understand this "restore" centric workflow you describe. You can store regression estimates and use them later (or not) if you like. You can also store tables (as collections) and reference them by name later in putdocx. Here is one simple workflow with -estimate table- but there are definitely other viable workflows that should be basically equivalent to whatever you are doing in R.
Code:
cd "H:\Users\Daniel Schaefer" sysuse auto, clear regress price mpg estimates store model1 regress price mpg i.foreign estimates store model2 regress price mpg i.foreign weight estimates store model3 putdocx begin estimates table model1 putdocx table model1 = etable estimates table model2 putdocx table model2 = etable estimates table model3 putdocx table model3 = etable putdocx save testdoc, replace
Comment