Hi,
I was to look at the impact drought interacted with male has on school enrolment using panel data for 4 years (2010, 2011, 2012 and 2014). The variables are defined as follows:
Drought=1 1 if individual was exposed to a drought and 0 otherwise
male=1 if individual is male and 0 otherwise
enrolled=1 if enrolled in school and 0 otherwise
I use a fixed effects panel model.
How exactly do I interpret the coefficient on drought*male? Is this correct: being male and experiencing a drought increases the probability of being enrolled at school, compared to females. Also, what exactly is the probability? I read elsewhere that the -margins- command cannot be used here.
thanks!
I was to look at the impact drought interacted with male has on school enrolment using panel data for 4 years (2010, 2011, 2012 and 2014). The variables are defined as follows:
Drought=1 1 if individual was exposed to a drought and 0 otherwise
male=1 if individual is male and 0 otherwise
enrolled=1 if enrolled in school and 0 otherwise
I use a fixed effects panel model.
Code:
. xtset pidlink year xtlogit enrol 1.drought0#1.male $controls, fe note: multiple positive outcomes within groups encountered. note: 6,669 groups (11,755 obs) omitted because of all positive or all negative outcomes. Conditional fixed-effects logistic regression Number of obs = 4,615 Group variable: pidlink Number of groups = 1,571 Obs per group: min = 2 avg = 2.9 max = 4 LR chi2(12) = 101.90 Log likelihood = -1620.5449 Prob > chi2 = 0.0000 -------------------------------------------------------------------------------- enrolled | Coefficient Std. err. z P>|z| [95% conf. interval] ---------------+---------------------------------------------------------------- drought0#male | 1#Male | .4243507 .1396314 3.04 0.002 .1506782 .6980232 age | -.1015805 .0450608 -2.25 0.024 -.1898981 -.0132629 _Iyear_2010 | -.548134 .3994242 -1.37 0.170 -1.330991 .2347231 _Iyear_2011 | -.4042592 .2737263 -1.48 0.140 -.9407528 .1322344 _Iyear_2012 | -.364275 .1627985 -2.24 0.025 -.6833542 -.0451958 --------------------------------------------------------------------------------
thanks!
Comment