I use the following code to output regression results.
While I specify "tstat", in the output xml file, the values below coefs are not t statistics. Replacing "tstat" with "pvalue" does change anything. Has anyone experienced this issue?
Code:
xml_tab r1, replace drop() below tstat stats(N r2) sheet(Result, color(3) nogridlines) /// lines(EST_NAMES 3 COL_NAMES 2 _cons 2 LAST_ROW 3) /// rblanks(_cons "FEs: none") /// save("$dir\Results\results.xml")
Comment