You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Bayesian analysis of graphical models with binary and ordinal variables**
29
29
30
30
The **bgms** package implements Bayesian estimation and model comparison for
31
31
**ordinal Markov random fields (MRFs)**, graphical models that represent
@@ -79,15 +79,27 @@ browseVignettes("bgms")
79
79
80
80
## Why use Markov Random Fields?
81
81
82
-
Multivariate analysis using graphical models has received much attention in the recent psychological and psychometric literature [@RobinaughEtAl_2020; @MarsmanRhemtulla_2022_SIintro; @ContrerasEtAl_2019]. Most of these graphical models are Markov Random Field (MRF) models, whose graph structure reflects the partial associations between variables [@KindermannSnell1980]. In these models, a missing edge between two variables in the network implies that these variables are independent, given the remaining variables [@Lauritzen2004]. In other words, the remaining variables of the network fully account for the potential association between the unconnected variables.
82
+
Graphical models or networks have become central in recent psychological and psychometric research [@RobinaughEtAl_2020; @MarsmanRhemtulla_2022_SIintro; @ContrerasEtAl_2019]. Most are **Markov random field (MRF)** models, where the graph structure reflects partial associations between variables [@KindermannSnell1980].
83
+
84
+
In an MRF, a missing edge between two variables implies **conditional independence** given the rest of the network [@Lauritzen2004]. In other words, the remaining variables fully explain away any potential association between the unconnected pair.
85
+
86
+
## Why use a Bayesian approach?
87
+
88
+
When analyzing an MRF, we often want to compare competing hypotheses:
89
+
90
+
-**Edge presence vs. edge absence** (conditional dependence vs. independence) in one-sample designs.
91
+
-**Parameter difference vs. parameter equivalence** in independent-sample designs.
83
92
84
-
## Why use a Bayesian approach to analyze the MRF?
93
+
Frequentist approaches are limited in such comparisons: they can reject a null hypothesis, but they cannot provide evidence *for* it.
94
+
As a result, when an edge or difference is excluded, it remains unclear whether this reflects true absence or simply insufficient power.
85
95
86
-
Testing the structure of the MRF in a one-sample design requires us to determine the plausibility of the opposing hypotheses of conditional dependence and conditional independence. That is, how plausible is it that the observed data come from a network with a structure that includes the edge between two variables compared to a network structure that excludes that edge? Similarly, testing for group differences in the MRF in an independent-samples design requires us to determine the plausibility of the opposing hypotheses of parameter difference and parameter equivalence. That is, how plausible is it that the observed data come from MRFs with differences in specific edge weights or threshold parameters compared to MRFs that do not differ in these parameter?
96
+
Bayesian inference avoids this problem.
97
+
Using **inclusion Bayes factors**[@HuthEtAl_2023_intro; @SekulovskiEtAl_2024], we can quantify evidence in both directions:
87
98
88
-
Frequentist approaches are limited in this respect because they can only reject, not support, null hypotheses of conditional independence or parameter equivalence. This leads to the problem that if an edge is excluded, we do not know whether this is because the edge is absent in the population or because we do not have enough data to reject the null hypothesis of independence. Similarly, if a difference is excluded, we do not know whether this is because there is no difference in the parameter between the different groups or because we do not have enough data to reject the null hypothesis of parameter equivalence.
99
+
-**Evidence of edge presence** vs. **evidence of edge absence**, or
100
+
-**Evidence of parameter difference** vs. **evidence of parameter equivalence**.
89
101
90
-
To avoid this problem, we will advocate a Bayesian approach using Bayes factors. In one-sample designs, the inclusion Bayes factor [@HuthEtAl_2023_intro; @SekulovskiEtAl_2024] allows us to quantify how much the data support both conditional dependence -<em>evidence of edge presence</em> - or conditional independence -<em>evidence of edge absence</em>. It also allows us to conclude that there is limited support for either hypothesis - an <em>absence of evidence</em>. In independent-sample designs, they can be used to quantify how much the data support the hypotheses of parameter difference and equivalence. The output of the <strong>bgm</strong> and <strong>bgmCompare</strong> functions can be used to estimate these inclusion Bayes factors.
102
+
This makes it possible not only to detect structure and group differences, but also to conclude when there is an *absence of evidence*.
0 commit comments