I must refer to the z-statistics in a multi-equation model.
My goal is to refer to the z stat of -0.13 in the table so that I may transform it into a p-value, but Stata indicates "_z not found". And of course, if I just use -0.13 in the display equation, it'll have rounding error.
When I get into the guts of the output by doing
I see that z is in fact there, indicating that I'm referring to it improperly in my syntax. How might I extract -.12840134 here without needing to write that specific number?
Code:
webuse sysdsn1, clear cls mlogit insure i.site di 2*(1-normal(abs(_z[2:2.site])))
When I get into the guts of the output by doing
Code:
qui mlogit mat l r(table)
Comment