First, apologies for the delayed response, I've been out ill this week.
The bits column contains the AIC-corrected likelihood ratio converted
to the log-base-2 scale. On this scale, positive evidence signifies
data that favour the effect while negative evidence signifies data
that favor the null. The absolute value of the bits reflects the
strength of evidence (zero bits reflects perfect ambiguity). There is
no "critical bits value" at which one can objectively claim an effect
is real (or non-real) because this is not within the scope of the
purpose of likelihood ratios. To put it succinctly (and to paraphrase
http://philosophy.wisc.edu/forster/Likelihood/Why%20Likelihood.pdf):
1. Frequentist Significance Testing will tell you how to make a
decision (while keeping one type of decision error at a fixed rate
across multiple decisions) given a set of data (ignoring data/beliefs
obtained elsewhere).
2. Bayesian methods will tell you how to update your beliefs in the
face of new data (presuming you can operationalize your prior beliefs
quantitatively)
3. Likelihood methods will tell you to what degree your data favor a
given model (ignoring data/beliefs obtained elsewhere).
I argue that for the purposes of scientific reporting, it's
inefficient to represent the data as a decision (as in a significance
test) and infeasible to account for the priors of all possible readers
(though, maybe someday with interactive e-publications...). Thus the
likelihood-based approach is the only way to go.
Granted, it's rather inevitable that, given a likelihood-based
representation of evidence from a given data set, most
researchers/readers will want to make decisions or update their
beliefs. Mapping the likelihood ratio to a significance test is
relatively easy; my simulations (of an admittedly very simple
scenario) show that the analog of an alpha of .05 type 1 error rate is
achieved by using a criterion of 3 bits (which happens to match quite
nicely with the recommendations that I've seen in the past but whose
citations escape my googling at the moment). Using a likelihood ratio
for Bayesian belief updating is a little trickier because even though
the Bayes Factor may look like a likelihood ratio, apparently it
represents the relative likelihood integrated over all possible
parameter values of each model, not simply the MLE values as achieved
by the standard likelihood ratio. However, I wonder if a BIC-corrected
likelihood ratio achieves the same end? I'm not sufficiently
mathematically informed to say.
Mike
I believe you have something awry in your derivation of that
conversion; dAIC is simply the log-base-e likelihood ratio, so the
conversion between dAIC and bits should simply involve log2(exp(1))
> Also, what is the null model
> here?
In the context of ezMixed, the null ("restricted") model always
includes all effects included in the unrestricted model except the
effect of interest (equivalently, the effect of interest is restricted
to zero in the "restricted model"). So, for a main effect:
restricted = grandMean
unrestricted = grandMean + Effect
And for a 2-way interaction:
restricted = grandMean + Effect1 + Effect2
unrestricted = grandMean + Effect1 + Effect2 + Effect1:Effect2
> One advantage likelihood approaches is to move away from sharp cut-
> offs
> towards strength of evidence.
Hear, hear!
> Your argument about Bayesian stats assumes a subjective prior
> approach - whereas an objective prior approach seems more common in
> psychology. BIC approximates a Bayes factor with a unit information
> prior
> under certain circumstances (e.g., see Wasserman, 2004). Under the
> objective Bayes approach you are adding in fairly weak assumptions
> about
> the effect (e.g., that most effects are small-ish). It is worth
> looking at
> Jeff Rouder and colleagues work on Bayesian t tests.
I have seen some of this work, and will take another look, but I doubt
they've solved the inherent subjectivity of the process of quantifying
the prior; even with meta-analytic data available for specifying
priors, my "true" prior may differ from yours if I have different
degrees of trust in each of the reports supplying meta-analytic data,
etc. If it's simply a matter of making the prior "weaker", then it
strikes me as simply moving toward representing the data by its bayes
factor, which as I noted seems awfully similar in function to a
complexity corrected likelihood ratio and, personally, I prefer the
"prediction-optimized' correction provided by AIC over BIC's
correction.
Applying NHST to mixed effects modelling is apparently a rather tricky
endeavour. I haven't bothered to catch up on why this is, precisely,
because as a scientist (and not a decision maker) I prefer reporting
and evaluating evidence via likelihood ratios. I do have this quote
from Pinero & Bates (2000 page 87-88) which speaks to the
inadvisability of attempting LRTs on models with different fixed
effects (as are computed by ezMixed):
"Even though a likelihood ratio test for the ML fits of models with
different fixed effects can be calculated, we do not recommend using
such tests. Such likelihood ratio tests using the standard χ2
reference distribution tend to be "anticonservative"--sometimes quite
badly so."
Now, maybe they're not talking about the special case of comparing
nested models, where one model simply restricts one parameter to zero
that the other model leaves unrestricted. Certainly the prevalence of
LRTs in such cases I've seen lately might suggest that a few people
out there think it's ok (or don't realize their folly?).
> As I understand the summary table the results do not
> permit comparisons between rows but only within. Or am I misunderstanding
> the table insofar as one can indeed assume that the row with the highest
> positive bit value reflects the model that describes the data most
> adequately?
Each row represents the strength of evidence for that row's named
effect. Comparison of the values between rows speaks to differences
between effects in their strength of evidence. I'd say that you'd have
to have a very nuanced theory in order for those sorts of comparisons
to be meaningful.
> I know that the restricted model has the issue of restricting one parameter
> to the boundary of the parameter space and the simple chi-square
> distribution is not the "correct" distribution to perform a likelihood ratio
> test. But if this is the issue I would gladly help in developing an
> algorithm to obtain the correct mixture chi-square distribution (we have
> done so in a recent paper).
Actually, in the case of fixed effects, the restricted model is not
restricting the parameter to a boundary; the space is -Inf to Inf, so
0 is precisely in the center. I think you're thinking about random
effects, where a model that excludes a random effect indeed implicitly
restricts its variance estimate to zero, which is the lower bound for
variances. This is why, to my knowledge, LRTs are particularly
questionable in the context of comparing models with different random
effects structures.
> Second, I miss the possibility to allow for conditional or grouped random
> effects. As I understand ezMixed, it simply takes a random term for the
> random variable, (1|random), and adds the concatenation of all fixed
> effects by + or : (e.g. the main effect for cue in example 1 in ?ezMixed is
> "rt ~ (1|subnum) + cue").
> This way to specify a mixed model somehow contrasts with the way a model is
> specified in the "reference" paper from Baayen, Davidson, & Bates (2008,
> JML) in which the random effects for subject is conditionalized on the
> within-subject effect (e.g., "rt ~ (1 + cue|subnum) + cue" in the above
> example). Perhaps one could have two options to specify a fixed effect. One
> that is added to the random effect as done by Baayen et al. (e.g., the
> within-subjects variables), and one that is not (as is done so far).
The two models you describe:
rt ~ cue + (1|subnum)
vs
rt ~ cue + (1+cue|subnum)
differ in that the former has 2 extra parameters: one representing
variance in the effect of cue across levels of subnum, and one
representing a correlation that I won't bother discussing here for
brevity's purposes (for fuller explanation:
http://stats.stackexchange.com/questions/13166/rs-lmer-cheat-sheet/13173#13173).
While it seems reasonable to permit the effect of a fixed effect to
vary across levels of a random effect (particularly in my own domain
of cognitive science, where human participants are highly variable
from one to another) I'm frankly not sure it's worth it. Specifically,
models that permit a fixed effect to vary across levels of a random
effect can take much longer to compute than models that don't, and
while I once began coding ezMixed to indeed explore these more nuanced
models I found that they quickly expanded the number of models that
needed to be fit and compared. For example, with just one fixed effect
and one random effect, you'd have:
m1 = rt ~ 0 + (1|subnum)
m2 = rt ~ cue + (1|subnum)
m3 = rt ~ cue + (1|subnum) + (0+cue|subnum)
m4 = rt ~ cue + (1+cue|subnum)
where the m1-m2 comparison would provide an estimate of evidence for a
fixed effect of cue, the m2-m3 comparison would provide an estimate of
the evidence for variance in the effect of cue across levels of
subnum, the m3-m4 comparison would provide an estimate of the evidence
for a correlation between the subnum intercepts and subnum cue
effects. But what if the m2-m3 comparison is weak while the m3-m4
comparison is strong? And when you add a second fixed effect and start
exploring interactions, you need to decide on what main effects
structures to carry-over. I realized that it was getting unwieldy to
attempt to make automated so I gave up. I also ran some simulations
and found that if you're only interested in evaluating evidence for a
fixed effect, failing to account for its possible variance across
levels of the random effect doesn't actually hurt too much (the
obtained LRs aren't that much smaller than those obtained when there
isn't variance there to be accounted for). So I decided to leave
ezMixed as a tool for evaluating fixed effects and leave the
exploration of individual differences to manual computation for those
that know what they're doing.