## ----include = FALSE---------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 6, fig.height = 4 ) ## ----------------------------------------------------------------------------- library(bgms) ?ADHD data_adhd = ADHD[ADHD$group == 1, -1] data_adhd = data_adhd[, 1:5] data_no_adhd = ADHD[ADHD$group == 0, -1] data_no_adhd = data_no_adhd[, 1:5] ## ----eval = FALSE------------------------------------------------------------- # fit = bgmCompare(x = data_adhd, y = data_no_adhd, seed = 1234) ## ----include=FALSE------------------------------------------------------------ fit = bgmCompare(x = data_adhd, y = data_no_adhd, seed = 1234, chains = 2, display_progress = "none", verbose = FALSE) ## ----------------------------------------------------------------------------- summary(fit) ## ----------------------------------------------------------------------------- coef(fit) ## ----fig.width= 7, fig.height= 7---------------------------------------------- library(qgraph) adhd_network = matrix(0, 5, 5) adhd_network[lower.tri(adhd_network)] = coef(fit)$pairwise_effects_groups[, 1] adhd_network = adhd_network + t(adhd_network) colnames(adhd_network) = colnames(data_adhd) rownames(adhd_network) = colnames(data_adhd) qgraph(adhd_network, theme = "TeamFortress", maximum = 1, fade = FALSE, color = c("#f0ae0e"), vsize = 10, repulsion = .9, label.cex = 1, label.scale = "FALSE", labels = colnames(data_adhd) )