***ssc install esttab
I want the model titles to be "Model 1" "Model 2" "Model 3", I know we can set it using
however, I have a series of models, I want to use the number option and the prefix option to generate model titles automatically. However, it always includes the names stored in Stata. How to correct this?
I want the model titles to be "Model 1" "Model 2" "Model 3", I know we can set it using
Code:
esttab, mtitles("Model 1" "Model 2" "Model 3")
Code:
esttab mlab(,numbers notitles prefix("Model ")
Comment