| summary.net_mogen | R Documentation |
Summary Method for net_mogen
## S3 method for class 'net_mogen'
summary(object, ...)
object |
A |
... |
Additional arguments (ignored). |
A per-order model-selection data.frame with columns order,
layer_dof, cum_dof, loglik, aic, bic,
best ("AIC"/"BIC"/"AIC+BIC" marker) and
selected ("<--" on the chosen order), returned visibly;
the summary text is printed as a side effect.
seqs <- list(c("A","B","C","D"), c("A","B","C","A"), c("B","C","D","A"))
mg <- build_mogen(seqs, max_order = 2)
summary(mg)
seqs <- data.frame(
V1 = c("A","B","C","A","B"),
V2 = c("B","C","A","B","C"),
V3 = c("C","A","B","C","A")
)
mog <- build_mogen(seqs, max_order = 2L)
summary(mog)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.