Dear Statalist,

I need output the mixed interaction effects using esttab. However, I have two models and the second one has one more explanatory variable. I want the second model to be appended horizontally rather than vertically. Here are my current code:
Code:
mixed flitotal wc wc_recieved affect_recieved  quant_recieved c.loop_num##c.total_clicks || id:
stdBeta, store(Original Original2 Standardized)
esttab Original Standardized using "U:\example.html", se replace scalars(ll chi2)
mixed flitotal wc wc_recieved affect_recieved quant_recieved c.loop_num##c.total_clicks edu || id:
stdBeta, store(inform inform2 inform_beta)
esttab inform inform_beta using "U:\example.html", se append scalars(ll chi2)
My ideal format would be the second model estimates being appended in the same row (horizontally), so I can easily transform them like:
model 1 model 2
b1 b2
b1 b2
...