Texreg: Two models in one Latex table

Viewed 23

I have two BIFE models that do not work with stargazer, unfortunately. The Texreg package allows me to convert it Latex output, but I do not know how to put two models side by side.

The stargazer equivalent would be:

stargazer(model1, model2)
1 Answers

I fixed it with:

texreg(screenreg(list(model1, model2), custom.note = ""))

Related