Hello all,
I'm computing the marginal effects of a probit regression, like so:
From which I get this table:
So far so good, but I want to export it to a word document. The goal is to have a table for the probit regression with the marginal effects, like this:
However, when I export the table using
This is what I get:
It may seem that it's correct, however this table that I get has completely differenttt values from the first table I showed. Basically outreg2 is overwritting the command for margins Because of this, it's litereally the same to do
or
If anyone could help me out on this that'd be gratefully appreciated.
Thank you so much,
Manel
I'm computing the marginal effects of a probit regression, like so:
Code:
probit PIP RD IRDS IPP CSM CSL NECD PG SVC margins, dydx(*)
Code:
outreg2 using "C:\Stata\vmonteiro\models\modelos.doc"
Code:
probit PIP RD IRDS IPP CSM CSL NECD PG SVC margins, dydx(*) outreg2 using "C:\Stata\vmonteiro\models\modelos.doc"
Code:
probit PIP RD IRDS IPP CSM CSL NECD PG SVC outreg2 using "C:\Stata\vmonteiro\models\modelos.doc"
If anyone could help me out on this that'd be gratefully appreciated.
Thank you so much,
Manel
Comment