easybgm
CRAN download: https://cran.r-project.org/web/packages/easybgm/index.html
Science Score: 39.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 13 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.2%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
CRAN download: https://cran.r-project.org/web/packages/easybgm/index.html
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 10
- Releases: 0
Created over 3 years ago
· Last pushed 10 months ago
Metadata Files
Readme
README.Rmd
---
output: github_document
---
```{r, echo = FALSE, message=F}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
#fig.path = "man/figures/README-",
dev = "png",
dpi = 200,
fig.align = "center",
knitr::opts_chunk$set(comment = NA)
)
library(easybgm)
library(BGGM)
```
# easybgm: Easy Bayesian Graphical Modeling
The `R` package `easybgm` provides a user-friendly package for performing a Bayesian analysis of psychometric networks. In particular, it helps to fit, extract, and visualize the results of a Bayesian graphical model commonly used in the social-behavioral sciences. The package is a wrapper around existing packages. So far, the package supports fitting and extracting results of cross-sectional network models using `BDgraph` (Mohammadi & Wit, 2015), `BGGM`(Williams & Mulder, 2019), and `bgms` (Marsman & Haslbeck, 2023). As output, the package extracts the posterior parameter estimates, the posterior inclusion probability, the inclusion Bayes factor, and optionally posterior samples of the parameters and the nodes centrality. The package comes with an extensive suite of visualization functions.
## Installation
To install this package from Github use
```{r, eval=FALSE}
install.packages("remotes")
remotes::install_github("KarolineHuth/easybgm")
```
To rather install the most up-to-date developer version, use
```{r, eval=FALSE}
install.packages("remotes")
remotes::install_github("KarolineHuth/easybgm", ref = "developer")
```
## Overview
### Estimation
The package consists of wrapper functions around existing R packages (i.e., `BDgraph`, `bgms`, and `BGGM`). To initiate estimation, researchers must specify the data set and the data type (i.e., continuous, mixed, ordinal, or binary). Based on the data type specification, `easybgm` estimates the network using the appropriate R package (i.e., `BDgraph` for continuous and mixed data, and `bgms` for ordinal and binary data). Users can override the default package selection by specifying their preferred R package with the `package` argument. All other arguments, such as package-specific informed prior specifications, can be passed to `easybgm`. As output, `easybgm` returns the posterior parameter estimates, the posterior inclusion probability, and the inclusion Bayes factor. In addition, the package extracts the posterior samples of the parameters by setting `save = TRUE` and the strength centrality samples by setting `centrality = TRUE`.
### Visualization
The package comes with an extensive suite of functions to visualize the results of the Bayesian analysis of networks. We provide more information on each of the plots below. The visualization functions use `qgraph` (Epskamp et al., 2012) or `ggplot2` (Wickham, 2016) as the backbone.
#### Edge Evidence Plot
The edge evidence plot aids researchers in deciding which edges provide robust inferential conclusions. In the edge evidence plot, edges represent the inclusion Bayes factor $`\text{BF}_{10}`$. Red edges indicate evidence for edge absence (i.e., conditional independence), grey edges indicate the absence of evidence, and blue edges indicate evidence for edge presence (i.e., conditional dependence). By default, a $`\text{BF}_{10} > 10`$ is considered strong evidence for inclusion and $`\text{BF}_{01} > 10`$ for exclusion. Users can specify the threshold for Bayes factors.
#### Network Plot
In the network plot, edges indicate the strength of partial association between two nodes. The network plot shows all edges with an inclusion Bayes factor greater than $1$, i.e. all edges that have some evidence of inclusion. Edge thickness and saturation represent the strength of the association; the thicker the edge, the stronger the association. Red edges indicate negative associations and blue edges indicate positive associations.
#### Structure Plots
The structure uncertainty can be assessed with the posterior structure probability plot and the posterior complexity plot. The posterior structure probability plot shows the posterior probabilities of the visited structures, sorted from the most to the least probable. Each dot represents one structure. The more structures with similar posterior probability, the more uncertain the true structure. If one structure dominates the posterior structure probability, we can be relatively certain about the true structure.
The posterior complexity plot shows the posterior probability of a structure complexity (i.e., number of present edges in a network). Here, the posterior probability of all structures with the same complexity are aggregated into one plot.
#### 95 % Highest Density Intervals of the Posterior Parameter Distribution
The 95 % highest density intervals (HDI) of the parameters are visualized with a parameter forest plot. In the plot, dots represent the median of the posterior samples and the lines indicate the shortest interval that covers 95% of the posterior distribution. The narrower an interval, the more stable a parameter.
#### Centrality Plot
Researchers often use centrality measures to obtain aggregated information for each node, such as the connectedness quantified by strength centrality. Credible intervals for strength centrality can be obtained by calculating the centrality measure for each sample of the posterior distribution. The higher the centrality, the more connected the node; error bars represent the 95% High Density Interval (HDI).
## Example
We want to illustrate the package use with an example. In particular, we use the women and mathematics data which can be loaded with the package `BGGM`. We fit the model and extract its results with the function `easybgm`. We specify the data and the data type, which in this case is `binary`.
```{r, eval=FALSE}
library(easybgm)
library(BGGM)
data <- na.omit(women_math)
colnames(women_math) <- c("LCA", "GND", "SCT", "NMF", "SBP", "FTP")
res <- easybgm(data, type = "binary")
```
Having fitted the model, we can now take a look at its results.
```{r, eval=FALSE}
summary(res)
#> BAYESIAN ANALYSIS OF NETWORKS
#> Model type: binary
#> Number of nodes: 6
#> Fitting Package: bgms
#> ---
#> EDGE SPECIFIC OVERVIEW
#> Relation Estimate Posterior Incl. Prob. Inclusion BF Category
#> LCA-GND 0.000 0.034 0.035 excluded
#> LCA-SCT 0.001 0.027 0.028 excluded
#> GND-SCT 0.003 0.043 0.044 excluded
#> LCA-NMF 0.001 0.038 0.040 excluded
#> GND-NMF 0.508 1.000 Inf included
#> SCT-NMF -0.012 0.084 0.092 excluded
#> LCA-SBP 0.001 0.031 0.032 excluded
#> GND-SBP -0.756 1.000 Inf included
#> SCT-SBP 0.337 0.982 54.556 included
#> NMF-SBP -0.980 1.000 Inf included
#> LCA-FTP -0.004 0.051 0.054 excluded
#> GND-FTP 0.000 0.040 0.042 excluded
#> SCT-FTP 1.176 1.000 Inf included
#> NMF-FTP 0.670 1.000 Inf included
#> SBP-FTP -0.014 0.090 0.099 excluded
#>
#> Bayes Factors larger than 10 were considered sufficient evidence for the categorization.
#> ---
#> AGGREGATED EDGE OVERVIEW
#> Number of included edges: 6
#> Number of inconclusive edges: 0
#> Number of excluded edges: 9
#> Number of possible edges: 15
#>
#> ---
#> STRUCTURE OVERVIEW
#> Number of visited structures: 109
#> Number of possible structures: 32768
#> Posterior probability of most likely structure: 0.6264
#> ---
```
Furthermore, we can visualize the results with plots. In a first step, we assess the edge evidence plot in which edges represent the inclusion Bayes factor $`\text{BF}_{10}`$. Especially in a large network like ours, it is useful to split the edge evidence plot in two parts by setting the `split` argument to `TRUE`. As such, the left plot shows edges with some evidence for inclusion (i.e., $`\text{BF}_{10} > 1`$), where blue edges represent evidence for inclusion ($`\text{BF}_{10} > 10`$) and grey edges absence of evidence ($`1 < \text{BF}_{10} < 10`$). The right edge evidence plot shows edges with some evidence for exclusion (i.e., $`\text{BF}_{10} < 1`$) with evidence for exclusion shown as red ($`\text{BF}_{01} > 10`$) and inconclusive evidence as grey ($`0.1 < \text{BF}_{10} < 1`$).
```{r, eval=FALSE}
plot_edgeevidence(res, edge.width = 2, split = T)
```

Furthermore, we can look at the network plot in which edges represent the partial associations.
```{r, eval=FALSE}
plot_network(res, layout = "spring",
layoutScale = c(.8,1), palette = "R",
theme = "TeamFortress", vsize = 6)
```

We can also assess the structure specifically with three plots. Note that this only works, if we use either the `BDgraph` or `bgms` package.
```{r, eval=FALSE}
plot_structure_probabilities(res, as_BF = FALSE)
```

```{r, eval=FALSE}
plot_complexity_probabilities(res, as_BF = FALSE)
```

```{r, eval=FALSE}
plot_structure(res, layoutScale = c(.8,1), palette = "R",
theme = "TeamFortress", vsize = 6, edge.width = .3, layout = "spring")
```

In addition we can obtain posterior samples from the posterior distribution by setting `save = TRUE` in the `easybgm` function and thereby open up new possibilities of assessing the model. We can extract the posterior density of the parameters with a parameter forest plot.
```{r, eval=FALSE}
res <- easybgm(data, type = "binary", save = TRUE, centrality = TRUE)
plot_parameterHDI(res)
```

Furthermore, researcher can wish to aggregate the findings of the network model, commonly done with centrality measures. Due to the discussion around the meaningfulness of centrality measures in psychometric network models, we recommend users to stick to the strength centrality. To obtain the centrality measures, users need to set `save = TRUE` and `centrality = TRUE`, when estimating the network model with `easybgm`. The centrality measures can be inspected with the centrality plot.
```{r, eval=FALSE}
plot_centrality(res, measures = "Strength")
```

## Background Information
For more information on the package, the Bayesian background, its application to networks and the respective plots, check out:
Huth, K., Keetelaar, S., Sekulovski, N., van den Bergh, D., & Marsman, M. (2023). Simplifying Bayesian analysis of graphical models for the social sciences with easybgm: A user-friendly R-package.
Huth, K., de Ron, J., Luigjes, J., Goudriaan, A., Mohammadi, R., van Holst, R., Wagenmakers, E.J., & Marsman, M. (2023). Bayesian Analysis of Cross-sectional Networks: A Tutorial in R and JASP. PsyArXiv .
## Bug Reports, Feature Request, or Contributing
If you encounter any bugs or have ideas for new features, you can submit them by creating an issue on Github. Additionally, if you want to contribute to the development of `easybgm`, you can initiate a branch with a pull request; we can review and discuss the proposed changes.
## References
Epskamp, S., Cramer, A. O. J., Waldorp, L. J., Schmittmann, V. D., & Borsboom, D. (2012). qgraph: Network Visualizations of Relationships in Psychometric Data. Journal of Statistical Software, 48 . doi: 10.18637/jss.v048.i04
Huth, K., de Ron, J., Luigjes, J., Goudriaan, A., Mohammadi, R., van Holst, R., Wagenmakers, E.J., & Marsman, M. (2023). Bayesian Analysis of Cross-sectional Networks: A Tutorial in R and JASP. PsyArXiv .
Marsman, M., Haslbeck, J. M. B. (2023). Bayesian Analysis of the Ordinal Markov Random Field. PsyArXiv .
Mohammadi, Reza, and Ernst C Wit. (2015). "BDgraph: An R Package for Bayesian Structure Learning in Graphical Models." Journal of Statistical Software 89 (3). .
Wickham, H. (2016). ggplot2: Elegant graphics for data analysis. Springer-Verlag New York. Retrieved from
Williams, Donald R, and Joris Mulder. (2019). "Bayesian Hypothesis Testing for Gaussian Graphical Models: Conditional Independence and Order Constraints." PsyArXiv. .
[](https://github.com/KarolineHuth/easybgm/actions/workflows/R-CMD-check.yaml)
Owner
- Login: KarolineHuth
- Kind: user
- Repositories: 1
- Profile: https://github.com/KarolineHuth
GitHub Events
Total
- Issues event: 7
- Watch event: 1
- Delete event: 3
- Issue comment event: 5
- Member event: 2
- Push event: 5
- Pull request event: 3
- Create event: 1
Last Year
- Issues event: 7
- Watch event: 1
- Delete event: 3
- Issue comment event: 5
- Member event: 2
- Push event: 5
- Pull request event: 3
- Create event: 1
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 5
- Total pull requests: 1
- Average time to close issues: 4 months
- Average time to close pull requests: N/A
- Total issue authors: 2
- Total pull request authors: 1
- Average comments per issue: 0.4
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 4
- Pull requests: 1
- Average time to close issues: about 1 hour
- Average time to close pull requests: N/A
- Issue authors: 2
- Pull request authors: 1
- Average comments per issue: 0.25
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- KarolineHuth (10)
- ajames0001 (1)
- MaartenMarsman (1)
Pull Request Authors
- sarakeetelaar (6)
- KarolineHuth (6)
- sekulovskin (3)
- vandenman (2)
- olivroy (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 355 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 4
- Total maintainers: 1
cran.r-project.org: easybgm
Extracting and Visualizing Bayesian Graphical Models
- Homepage: https://github.com/KarolineHuth/easybgm
- Documentation: http://cran.r-project.org/web/packages/easybgm/easybgm.pdf
- License: GPL-2 | GPL-3 [expanded from: GPL (≥ 2)]
-
Latest release: 0.2.1
published over 1 year ago
Rankings
Dependent packages count: 27.9%
Dependent repos count: 36.9%
Average: 50.3%
Downloads: 86.1%
Maintainers (1)
Last synced:
10 months ago
Dependencies
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION
cran
- BDgraph * imports
- BGGM * imports
- HDInterval * imports
- bgms >= 0.1.1 imports
- dplyr * imports
- ggplot2 * imports
- igraph * imports
- qgraph * imports
- testthat >= 3.0.0 suggests
- vdiffr * suggests