| summary.boot_glasso | R Documentation |
Summary Method for boot_glasso
## S3 method for class 'boot_glasso'
summary(object, type = "edges", ...)
object |
A |
type |
Character. Summary type: |
... |
Additional arguments (ignored). |
A data frame or list of data frames depending on type.
set.seed(1)
dat <- as.data.frame(matrix(rnorm(60), ncol = 3))
bg <- boot_glasso(dat, iter = 10, cs_iter = 5, centrality = "strength")
summary(bg, type = "edges")
set.seed(42)
mat <- matrix(rnorm(60), ncol = 4)
colnames(mat) <- LETTERS[1:4]
boot <- boot_glasso(as.data.frame(mat), iter = 20, cs_iter = 10,
centrality = "strength", seed = 42)
summary(boot, type = "edges")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.