Hello,
I am using running a simple regression, in a context with few clusters.
For robust inference, I am using bootest to build my confidence intervals.

However, I am having trouble exporting the results in a consistent manner, perhaps using esttab to compare multiple regressions.

Does anyone know how I could do this?

Code:
webuse nlsw88,clear
regress wage tenure ttl_exp collgrad, cluster(industry) //my main model
boottest {tenure} {ttl_exp} {collgrad}, /// export no reg vs dom state
madjust(bonferroni) nograph reps(9999) // I am testing the significance of multiple coefficients. 
esttab // to show model coefficients

thanks a lot for your help