| bic_gau | R Documentation |
Computes BIC using the fitted log likelihood and a parameter count that respects identifiability constraints for the Gaussian antedependence parameters.
bic_gau(fit, n_subjects = NULL)
fit |
A fitted model object returned by |
n_subjects |
Number of subjects, typically |
The BIC is computed as:
BIC = -2 \times \ell + k \times \log(N)
where \ell is the log-likelihood, k is the number of free parameters,
and N is the number of subjects.
This function applies to Gaussian AD fits from fit_gau.
For categorical and INAD models, use bic_cat and
bic_inad.
A numeric scalar BIC value.
set.seed(1)
y <- simulate_gau(n_subjects = 30, n_time = 5, order = 1, phi = 0.3)
fit <- fit_gau(y, order = 1)
bic_gau(fit, n_subjects = nrow(y))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.