1
我想寫一個Stata中的TeX文件,其中包含一個四捨五入到最接近的.001的p值。由於sutex,outtab等不具備評估後業績的內置功能,我已經試過像格式化Stata LaTeX的估算結果
file write myfile %4z "`r(p)'"
或
gen temp = round(`r(p)',.001)
format temp %4.3f
sum temp, f
file write myfile " & `r(mean)'"
任何想法了一堆東西?