마침내 Stata 15에 대한 업데이트를 얻었습니다. 내가 기대했던 것 중 하나는 동적 문서의 새로운 기능입니다. 비록 내가 official stata tutorial에 설명 된 단계를 수행했지만, html 파일 dyndoc을 만들면 회귀 테이블을 스파 스하지 못하게되어 실망했습니다.stata15 dyndoc : 마더 다운 테이블
dyndoc "`path'\auto.txt", saving(`path'\auto.html) replace
:
~~~~
<<dd_do:nocommand>>
estimates table small, b(%7.4f) se(%7.4f) stats(N r2_a) markdown
<</dd_do>>
~~~~
이 내가 dyndoc와 TXT를 스파 스하는 방법이다 :이 나는 또한 접근 described here을 시도했다 실패 때문에
~~~~
<<dd_do>>
webuse auto, clear
<</dd_do>>
~~~~
~~~~
<<dd_do: quietly>>
reg mpg weight
estimates store small
<</dd_do>>
~~~~
~~~~
<<dd_do:nocommand>>
_coef_table, markdown
<</dd_do>>
~~~~
: 여기가 txt 파일에 무슨 짓을했는지
html 파일의 결과는 다음과 같습니다.
어떻게 해결할 수 있습니까?
저는 Windows 10 Pro에서 Stata SE 15.1을 실행하고 있습니다.