calculate_lr_test | R Documentation |
Function to calculate p-values for likelihood-ratio test
calculate_lr_test(logl, dfs)
logl |
a numeric vector of length 2 with log-likelihoods. Typically
ordered in increasing order (i.e. null model first, then full model) and
used to test the ratio |
dfs |
a numeric vector with degrees of freedom. |
Uses Wilk's theorem that -2log(LR) (LR = likelihood ratio) asymptotically approaches a Chi-square distribution under the null hypothesis that both likelihoods are equal.
Model likelihoods can then be compared by computing D = -2 log(likelihood reduced model / likelihood full model), and then use a Chi-square distribution with df_full - df_reduced degrees of freedom to derive a p-value.
This is basically the same way as stats::anova()
implements the
likelihood ratio test.
A list with two entries for the likelihood ratio test for the ratio
logl[1] / logl[2]
.
statistic
: test statistic.
pvalue
: p-value
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.