How can I accomplish the same without using it?
MWE below:
Code:
sysuse auto.dta reg price weight mpg mat output = r(table) mat list output matrix estimates = output["b",.] matrix standarderrors = output["se",.] matrix lowerbound = estimates-1.96*standarderrors matrix upperbound = estimates+1.96*standarderrors matrix rowjoinbyname results = estimates lowerbound upperbound
0 Response to Alternative to rowjoinbyname
Post a Comment