Displaying 1 result from an estimated 1 matches for "educy".
Did you mean:
educ
2005 Aug 17
1
two-level poisson, again
Hi,
I compare results of a simple two-level poisson estimated using lmer
and those estimated using MLwiN and Stata (v.9).
In R, I trype:
-------------------------------------------------------------------------------------------
m2 <- lmer(.D ~ offset(log(.Y)) + (1|pcid2) + educy + agri, male, poisson)
-------------------------------------------------------------------------------------------
In Stata, I type:
-------------------------------------------------------------------------------------------
xtpois _D educy agri, e(_Y) i(pcid2)
------------------------------------...