Skip to content

For what can I use a correlation of fixed effects from (g)lmer?

2 messages · Malcolm Fairbrother, svm

#
Dear Steve,
There's a lot in your question. A couple thoughts:
(1) I'm not clear whether you *country-mean-centered* your individual-level
covariates. If not, the country means of those variables could (i.e.,
almost certainly will) correlate to some degree with your country-level
variables. This will almost certainly just confuse matters, such that it
would be best to do the mean-centering. (If you want to include, say,
national mean education as a covariate, in addition to de-meaned individual
level education, you can do so... But that will probably correlate a lot
with, say, GDP/capita.) From what you say, mean-centering will get you what
you want, and it actually might also help you deal with the unhelpful
reviewer comments you're getting. (I totally agree with your reactions to
those. Given what appears to the paucity of logic behind their comments,
surreptitiously not doing what they're saying but appearing to do what
they're saying seems a reasonable strategy. Implicitly including country
means increasing your degrees of freedom at the country level, causing a
reduction in efficiency, as you suggest... Though it's an issue of
collinearity, not just missingness.)
So I think you're wrong that "individual-level variables don't meaningfully
influence the parameter estimates for country-level variables beyond
inefficiency introduced by missing data." But I think you can nonetheless
ignore them--because only the country mean components are having the
impacts you describe, and you seem to have substantive reasons to remove
those components.
(2) Like you, I've never found the "correlation of fixed effects" output
very useful. I generally just suppress/ignore it.
Hope that helps.
- Malcolm


Dr Malcolm Fairbrother
Senior Lecturer in Global Policy and Politics
School of Geographical Sciences
University of Bristol




Date: Mon, 22 Feb 2016 15:46:17 -0500

  
  
svm
#
Hi Malcolm,

Thanks for the response. I actually cite your 2014 PSRM piece in defense of
that argument. I know we're not using the same language in a similar
approach, but I remember you arguing for the exclusion of individual-level
covariates because it would just contribute to missingness and not help
with your overall research question. We're both using WVS data too.
Sometimes, missingness is not random (e.g. WVS not asking about respondent
ideology in several important countries [like China] in one of my projects).

I did want to clarify that my mean-centering approach is inspired by Gelman
(2008), who argues to scale by two standard deviations. When I have two or
three waves, the inclusion of one or more predictors may drop out an entire
wave (e.g. EVS not asking about respondent's education levels until the
third wave). So, I try to scale on the country-wave (for individual-level
variables like age) or the survey wave (at the macro-level attributes like
a country's level of democracy). For example, here's what I do with a
respondent's age in EVS:

EVS <- ddply(EVS, c("ccode","wave"), transform, zg.age = arm::rescale(x003))

and here's what I do with level of democracy (UDS data).

Macro.EVS <- ddply(Macro.EVS, c("wave"), transform, zg.udsmean =
arm::rescale(udsmean))

In the example I cite above, only the bottom three rows in the correlation
matrix are country-level (really: country-year-level) covariates.
Everything else is an individual-level variable.

And yeah, I've never used a correlation of fixed effects before for
anything concerning the model I estimate. I'm curious if I actually could
use that as justification to stop flooding models with individual-level
variables that (I think) don't meaningfully influence the country-level
variables of interest to me (beyond introducing non-random missingness).

- Steve


On Wed, Feb 24, 2016 at 4:04 PM, Malcolm Fairbrother <
M.Fairbrother at bristol.ac.uk> wrote: