summary {gmgm} | R Documentation |
This function summarizes a Gaussian mixture model or graphical model.
## S3 method for class 'gmm'
summary(object, ...)
## S3 method for class 'gmbn'
summary(object, ...)
## S3 method for class 'gmdbn'
summary(object, ...)
object |
An object of class |
... |
Unused arguments from the generic function. |
If object
is a gmm
object, an integer vector containing
the number of variables, mixture components and free parameters.
If object
is a gmbn
or gmdbn
object, a list with
elements:
global |
An integer vector containing the global number of nodes, arcs,
mixture components and free parameters (for a |
local |
For a |
data(gmm_body)
summ_1 <- summary(gmm_body)
data(gmbn_body)
summ_2 <- summary(gmbn_body)
data(gmdbn_air)
summ_3 <- summary(gmdbn_air)