ising_search {GGMnonreg} | R Documentation |
Ising: automated search
Description
Data mining to learn the graph.
Usage
ising_search(Y, IC = "BIC", progress = TRUE)
Arguments
Y |
A data matrix of dimensions n (observations) by p (nodes). |
IC |
Character string. The desired information criterion. Options include
|
progress |
Logical. Should a progress bar be included (defaults to |
Details
Only backwards selection is currently implemented.
Value
An object of class ising_search
, including wadj
(weighted adjacency matrix)
and adj
(adjacency matrix).
Examples
# data
Y <- ifelse( ptsd[,1:5] == 0, 0, 1)
# search data
fit <- ising_search(Y)
[Package GGMnonreg version 1.0.0 Index]