BIC for a particular pattern
Find the BIC and MLE from a set of observed eigenvalues for a specific pattern.
pcbic(eigenvals, n, pattern)
eigenvals
: The -vector of eigenvalues of the covariance matrix, in order from largest to smallest.n
: The degrees of freedom in the covariance matrix.pattern
: The pattern of equalities of the eigenvalues, given by the -vector (, ... , ) as in (13.8).A list
with the following components:
# Build cars1 require("mclust") mcars <- Mclust(cars) cars1 <- cars[mcars$classification == 1, ] xcars <- scale(cars1) eg <- eigen(var(xcars)) pcbic(eg$values, 95, c(1, 1, 3, 3, 2, 1))
pcbic.stepwise
, pcbic.unite
, and pcbic.subpatterns
.
Useful links