Announcement

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

  • Save results from the first stage in ivprobit

    Hello!
    I am doing :

    ivprobit any $GR_geo ( gdp_perc = $x_eco $x_eco_lag_1 ), twostep first
    estimates store estd4
    esttab estd4 using "my_csv_file.csv" , p scalars(F df_m df_r) r2(2) wide label replace



    But I get only the results for the second stage in my csv-file!
    What should I do to get the results from the first stage in csv-file? Thank you very much!

  • #2
    The first stage results of ivprobit are those from a regression of the endogenous variable (outcome), instruments and the regressors.

    Code:
    regress gdp_perc $x_eco $x_eco_lag_1 $GR_geo
    eststo first
    ivprobit any $GR_geo ( gdp_perc = $x_eco $x_eco_lag_1 ), twostep first
    eststo estd4
    esttab first estd4 using "my_csv_file.csv" , p scalars(F df_m df_r) r2(2) wide label replace

    Comment

    Working...
    X