Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Controls yes or no line on a table with 4 probit models

    Hello,

    I am trying to produce a nice table (latex format) using the 4 probit models below (Model 1 and 3 are without controls and model 2 and 4 with controls). However, I would like to have it differently displayed in my final table, namely with a line Controls: yes or no as it is often done in economics papers.
    Could you help me?

    est clear
    probit p_info_avoider prog
    eststo model1
    probit p_info_avoider prog $Controls
    eststo model2
    probit info_avoiding_pe prog
    eststo model3
    probit info_avoiding_pe prog $Controls
    eststo model4
    esttab model1 model2 model3 model4 using table1a.tex, label se star(* 0.1 ** 0.05 *** 0.01) replace
Working...
X