Hi. I’ve been reading up on xtpoisson on Statalist and in Rabe-Heketh & Skrondal’s book “Multilevel and Long. Modeling using Stata” (older edition). However, I feel I still don’t have a complete grasp of what options to use and how to examine post-estimation predictions. So, I’m looking for general advice on what to read and to know if I’m headed in the right direction.
The goal of this research is to describe the association between the number of forms filed at a government agency with (1) policy options that some states (United States) implemented or changed over the periods observed and (2) interventions by advocates to increase agency compliance with federal laws meant to make the forms more accessible.
The variables:
forms 74 310924.5 316870.4 2505 1682350
Here is what I ran in Stata 15.1:
The results show a statistically and substantively significant association in the hypothesized directions for all predictors in the model except for some of the early years.
.
Questions:
The goal of this research is to describe the association between the number of forms filed at a government agency with (1) policy options that some states (United States) implemented or changed over the periods observed and (2) interventions by advocates to increase agency compliance with federal laws meant to make the forms more accessible.
The variables:
- forms: The DV is the sum of forms submitted in a state over a two-year period. Over six biennial periods, 13 states are observed. In four periods, one state is missing data (a different state three of those times).
forms 74 310924.5 316870.4 2505 1682350
- statefip: state id code; 13 states.
- period: the two-year periods are coded from one to six
- pool100k: the number of people participating in the program in the even-numbered year of the period divided by 100,000. The number of forms filed in a year doesn’t equal the number eligible because program participants do not need to file each year. Thus, this is a proxy for state population size and state characteristics (i.e., not all states have the same degree of demand for the benefits).
- renewal: number of years before new forms must be filed; ranges from four to 10; four of the 13 states increased the length over time; none reduce the length; longer periods should decrease the dependent variable
- policy: binary for an optional policy that might increase accessibility to the form (in 2008, two states out of the 13 had the policy and by 2018, five states did); state-periods with this policy should be associated with a higher dependent variable
- intervention: mutually exclusive intervention periods, ranging from 0= no external intervention in state-period; 1 = advocates warn state about non-compliance early in that period; 2= the state-period is covered by improvements made by the state after advocates pointed out non-compliance; 3=state-period covered by litigation settlement to improve compliance with federal law; for a few states two years after settlements expired are coded as under settlement based on evidence that states didn’t change the policies settlements altered; other states have not yet exited settlements or had experienced the milder intervention.
Here is what I ran in Stata 15.1:
Code:
xtset statefip period
Code:
xtpoisson forms i.period c.pool100k c.renewal i.policy i.interven, pa vce(robust) i(statefip)
.
Questions:
- From the description, should the model by PA, RE, or FE? I am familiar with FE when using xtreg but it sounds like it isn’t comparable to FE in xtpoisson.
- Since the dependent variable is the absolute count of forms, I assume I don’t need an offest or exposure option. Is that right?
- Is the corr(exchangeable) the right option here (the default)?
- Sponsors of this evaluation would be much more comfortable with reporting the number of forms, as opposed to IRR. Post-estimation, the margins i.interven, contrast(eff) command gives predicted results that are reasonable from looking at the data and based on running the model as xtreg…, fe i(statefip) cluster(statefip). Is the margins command after xtpoisson giving me results in the number of forms?
- If FE or RE are better specifications of the model, how do I get from IRR or coefficients back to units as forms? I tried following advice given in other threads but I wasn't getting units.
- Finally, are there other books or lectures on xtpoisson I might benefit from reading? The Stata manual seems to have a higher learning curve than I would like, so some other readings for reassurance or examples would help.
Comment