I am storing regression results as in the demonstration example below.
I also store q-values that correspond with this regression as a matrix (toy example).
I want to export a regression result table where the associated q-values appear below the standard errors, as in the quickly produced table below. The problem is that I cannot figure out how to add the vector of q-values to the stored regression results without turning it into a matrix that becomes incompatible with regression output packages such as esttab. How can I add these q-values to my regression output table?

Code:
sysuse auto, clear reg price mpg weight length est store cars
Code:
mat demo = [0.5, 0.2, 0.8]

Comment