In Stata 19.5, regress with absorb() does not store r(table). Instead, it lists r(datasignature).
Workaround is to just replay the table, but the behavior looks like a bug? The table does get stored without absorb(), and areg does store r(table) as well.
Code:
sysuse auto, clear reg price mpg, absorb(rep78) return list

Comment