Page 1 of 1

Coefficient legends after runmlwin

Posted: Wed Mar 10, 2021 2:28 pm
by ManuelDewez
Hello ,

I am new with runmlwin.
In stata after melogit it is possible to get the coefficient names using coeflegend to then use the coefficient for algebraic calculations.
I tried coeflegend after runmlwin but it doesn't work.
How an I get coefficient legends after runmlwin?

Thank you

Manuel

Re: Coefficient legends after runmlwin

Posted: Thu Mar 11, 2021 8:20 pm
by GeorgeLeckie
Hi Manuel,

If you type

. matrix list e(b)

You will see the vector of parameter estimates and you can then refer to them by their column names. For example...

display _b[FP1:cons]

Best wishes

George

Re: Coefficient legends after runmlwin

Posted: Fri Mar 12, 2021 2:23 pm
by ManuelDewez
Thank you George,

Is it also possible to obtain the names of the other parameters, for example the lower and upper boundaries of the 95% CI?

I am asking this because I want to create a syntax that allows including the 95% boundaries in calculations.

Thank you!