Over a decade of research on the topic of informative hypotheses has resulted in a bunch of methodological, tutorial, and applied papers, books (e.g., Hoijtink, 2012), and several software packages (see informative-hypotheses.sites.uu.nl). Informative hypotheses with simple order constraints, such as Hi: μ1 > μ2 > μ3, Hi : μ1 > (μ2, μ3) have proven their use: not only do these hypotheses represent researchers’ expectations better, they also have more statistical power than classical hypotheses (Vanbrabant et al., 2015). The Bayes Factor (BF) is a Bayesian measure of support used for model selection (Kass and raftery, 1995). The BF can also be used for the evaluation of informative hypotheses. Using the BF, the support in the data for an informative hypothesis (Hi) versus the unconstrained alternative (Hu) can be calculated. As was shown by Klugkist et al. (2005):
$$ BF_{{H_i,H_u}} = \frac{f_i}{c_i}, $$
where fi denotes fit for the hypothesis Hi, and ci denotes complexity for the hypothesis Hi. fi is a measure of agreement between the data and Hi, it is the posterior probability of the hypothesis given the data. fi can only be calculated after the data is observed. ci refers to the proportion of the parameter space in agreement with the hypothesis by chance: the a priori probability of the hypothesis. Complexity can be calculated before conducting the analysis.
In case of multivariate analyses, BIEMS (Mulder et al., 2012) can be used to estimate the BF. For structural equation models, BF-SEM has been developed (Gu et al., submitted). The computation of the BF for structural equation models calculated in Mplus (Muthén and Muthén, 1998-2012) is described by Van de Schoot et al. (2012). As these authors show, fit can be calculated by means of MplusAutomation (Hallquist, 2013), and complexity can be calculated manually. With few parameters and few constraints, this manual computation of ci is easy. When the number of parameters and constraints increases, however, it is preferable to automate the process. Therefore, we published the CRAN package complexity (Zondervan-Zwijnenburg, 2017). The code for the complexity function is provided in Appendix A. We will consider two examples in which the goal is to obtain the complexity for the hypothesis of interest to demonstrate the complexity package.
The first example includes four regression coefficients: β1, β2, β3, and β4. The expectation is that β1 is smaller than β2 and that β3 is smaller than β4, which can be expressed as, Hi : (β1 < β2) & (β3 < β4).
Obtain all possible ways in which the parameters can be ordered; for the first example there are 4! = 4 × 3 × 2 × 1 = 24 different ways of ordering the parameters.
Count the number of possible orderings that are in line with each of the informative hypotheses: in this example it is six.
Divide the value obtained in step 2 by the value obtained in step 1. In our example: ci = 6/24 = 0.25.
complexity(4,1,2,3,4)
. Here, the first
4
stands for the four parameters involved in the analysis.
Every following set of two numbers, represents a constraint in which the
first parameter is constrained to be lower than the second parameter.
Hence, 1,2
refers to (β1 < β2)
and 3,4
refers to (β3 < β4).
If the hypothesis would have been (β1 < β2)
& (β2 > β4),
the specification would be complexity(4,1,2,4,2)
. Parameter
3 is then unrestricted. For β1 < β2 < β3 < β4
the correct specification is: complexity(4,1,2,2,3,3,4)
.
complexity(4,1,2,3,4)
generates the following output:## $`true permutations`
## [,1] [,2] [,3] [,4]
## [1,] 1 2 3 4
## [2,] 1 4 2 3
## [3,] 1 3 2 4
## [4,] 3 4 1 2
## [5,] 2 3 1 4
## [6,] 2 4 1 3
##
## $`total number of permutations`
## [1] 24
##
## $`number true`
## [1] 6
##
## $`complexity (proportion)`
## [1] 0.25
The output shows:
the list of permutations in accordance with the request, where the column represents parameter and the numbers represent it’s position.
the total number of permutations.
the number of permutations in agreement with the hypothesis.
the percentage of permutations in agreement with the hypothesis ( = ci).
The second example comes from Johnson et al. (2015) and extends on
the first example with two extra parameters that we hypothesize to be
ordered as follows: (β1 < β2)
& (β2, β3 > β4)
& (β4, β5 < β6).
Step two of the manual method will show that there are 720 ways in which
these parameters can be ordered. Writing down all possibilities and
counting the number of possibilities in agreement with the hypothesis is
time consuming and prone to errors. Hence, we switch to the automated
procedure. To determine the correct input, we need to specify all the
separate constraints in terms of parameters smaller than other
parameters. In this case: (β1 < β2)
& (β4 < β2)
& (β4 < β3)
& (β4 < β6)
& (β5 < β6).
The number of parameters involved is six. Hence, the required input is:
complexity(6, 1,2,4,2,4,3,4,6,5,6)
. Almost immediately, the
complexity package generates the following output:
## $`true permutations`
## [,1] [,2] [,3] [,4] [,5] [,6]
## [1,] 1 6 5 2 3 4
## [2,] 1 5 6 2 3 4
## [3,] 1 4 6 2 3 5
## [4,] 1 6 4 2 3 5
## [5,] 1 4 5 2 3 6
## [6,] 1 5 4 2 3 6
## [7,] 5 6 4 1 2 3
## [8,] 4 5 6 1 2 3
## [9,] 4 6 5 1 2 3
## [10,] 1 5 4 3 2 6
## [11,] 1 4 5 3 2 6
## [12,] 1 6 4 3 2 5
## [13,] 1 4 6 3 2 5
## [14,] 1 4 3 2 5 6
## [15,] 1 3 4 2 5 6
## [16,] 1 5 3 2 4 6
## [17,] 1 5 6 3 2 4
## [18,] 1 6 5 3 2 4
## [19,] 1 3 5 2 4 6
## [20,] 1 6 3 2 4 5
## [21,] 1 3 6 2 4 5
## [22,] 3 6 5 1 2 4
## [23,] 3 5 6 1 2 4
## [24,] 5 6 3 1 2 4
## [25,] 3 4 6 1 2 5
## [26,] 3 6 4 1 2 5
## [27,] 3 4 5 1 2 6
## [28,] 3 5 4 1 2 6
## [29,] 4 5 3 1 2 6
## [30,] 4 6 3 1 2 5
## [31,] 4 6 3 2 1 5
## [32,] 4 5 3 2 1 6
## [33,] 3 5 4 2 1 6
## [34,] 3 4 5 2 1 6
## [35,] 3 6 4 2 1 5
## [36,] 3 4 6 2 1 5
## [37,] 3 4 2 1 5 6
## [38,] 5 6 3 2 1 4
## [39,] 3 5 2 1 4 6
## [40,] 3 5 6 2 1 4
## [41,] 3 6 5 2 1 4
## [42,] 3 6 2 1 4 5
## [43,] 2 3 6 1 4 5
## [44,] 2 6 3 1 4 5
## [45,] 2 3 5 1 4 6
## [46,] 2 6 5 3 1 4
## [47,] 2 5 6 3 1 4
## [48,] 2 5 3 1 4 6
## [49,] 2 3 4 1 5 6
## [50,] 2 4 3 1 5 6
## [51,] 2 4 6 3 1 5
## [52,] 2 6 4 3 1 5
## [53,] 2 4 5 3 1 6
## [54,] 2 5 4 3 1 6
## [55,] 4 6 2 1 3 5
## [56,] 4 6 5 2 1 3
## [57,] 4 5 6 2 1 3
## [58,] 4 5 2 1 3 6
## [59,] 5 6 4 2 1 3
## [60,] 2 5 4 1 3 6
## [61,] 2 4 5 1 3 6
## [62,] 2 6 4 1 3 5
## [63,] 2 4 6 1 3 5
## [64,] 5 6 2 1 3 4
## [65,] 2 5 6 1 3 4
## [66,] 2 6 5 1 3 4
##
## $`total number of permutations`
## [1] 720
##
## $`number true`
## [1] 66
##
## $`complexity (proportion)`
## [1] 0.09166667
The output shows that 66 out of 720 possibilities are in agreement
with our hypothesis, which results in a complexity of .09. In addition,
the output provides all permutations in agreement with the hypothesis
for visual inspection of the results. The complexity
package also includes a function that launches a Shiny
(Chang et al., 2016) application with runShiny()
. The
output is the same as the output obtained with the
complexity
function.
Although it is possible to calculate the proportion of the parameter space in line with the hypothesis by chance (i.e., ci) manually, the second example showed that especially when the number of parameters involved becomes larger or when the constraints are more complex, it is easier and more reliable to use the complexity function in R to obtain the complexity for the Bayes Factor.
To compute the Bayes Factor for Example 2, the remaining element to compute is fi. To obtain fi we need to calculate the proportion of iterations in the Gibbs sampler that is in agreement with (β1 < β2) & (β2, β3 > β4) & (β4, β5 < β6). Using MplusAutomation we find that for fi is .353.
$$ BF_{{H_i,H_u}} = \frac{.353}{.092} = 3.837. $$
Thus, taking the model complexity into account, Hi: (β1 < β2) & (β2, β3 > β4) & (β4, β5 < β6) fits better than Hu: β1, β2, β3, β4, β5, β6: the informative hypothesis receives more than three times the support.
##Summary The complexity of an informative hypothesis is required to calculate BFHi, Hu. The complexity package enables the user to calculate ci quickly, even for more complicated hypotheses.
##Funding MZ is supported by the Consortium Individual Development (CID), which is funded through the Gravitation program of the Dutch Ministry of Education, Culture, and Science and the Netherlands Organization for Scientific Research (NWO grant number 024.001.003). RS is supported by a VIDI grant from the Netherlands Organization for Scientific Research (NWO grant number 452.14.006).
##About the authors Mariëlle
Zondervan-Zwijnenburg
Department of Methodology & Statistics
Utrecht University
The Netherlands
Alan R. Johnson
Nord University Business School
Bodø, Norway
and
RATIO Research Institute
Stockholm, Sweden
Rens van de Schoot
Department of Methodology & Statistics
Utrecht University
The Netherlands
W. Chang, J. Cheng, J. Allaire, Y. Xie, and J. McPherson. shiny: Web Application Framework for R, 2016. URL https://CRAN.R-project.org/package=shiny. R package version 0.13.2.
X. Gu, H. Hoijtink, J. Mulder, and Y. Rosseel. BF-SEM: A Fortran program for Bayesian testing of order constrained hypotheses in structural equation models. submitted.
M. Hallquist and J. Wiley. Mplusautomation: Automating Mplus Model Estimation and Interpretation, 2016. URL https://CRAN.R-project.org/package=MplusAutomation.
H. Hoijtink. Informative hypotheses: Theory and practice for behavioral and social scientists. CRC Press, 2012.
A. R. Johnson, R. van de Schoot, F. Delmar, and W. D. Crano. Social influence interpretation of interpersonal processes and team performance over time using Bayesian model selection. Journal of Management, 41(2):574–606, 2015. doi: 10.1177/0149206314539351.
R. E. Kass and A. E. Raftery. Bayes factors. Journal of the american statistical association, 90(430):773–795, 1995. doi: 10.1080/01621459.1995.10476572
I. Klugkist, O. Laudy, and H. Hoijtink. Inequality constrained analysis of variance: a bayesian approach. Psychological Methods, 10(4):477, 2005. doi: 10.1037/1082-989X.10.4.477
J. Mulder, H. Hoijtink, and C. de Leeuw. BIEMS: A fortran 90 program for calculating bayes factors for inequality and equality constrained models. Journal of Statistical Software, 46(2):1–39, 2012.
L. K. Muthén and B. O. Muthén. Mplus user’s guide. Muthén & Muthén, Los Angeles, CA, 7 edition, 1998-2012.
R. Van de Schoot, H. Hoijtink, M. N. Hallquist, and P. A. Boelen. Bayesian evaluation of inequality-constrained hypotheses in SEM models using Mplus. Structural Equation Modeling: A Multidisci- plinary Journal, 19(4):593–609, 2012. doi: 10.1080/10705511.2012.713267.
L. Vanbrabant, R. Van de Schoot, and Y. Rosseel. Constrained statistical inference: sample-size tables for ANOVA and regression. Frontiers in Psychology, 5:1565, 2015. doi: 10.3389/fpsyg.2014.01565.
M. Zondervan-Zwijnenburg. complexity: Calculate the Proportion of Permutations in Line with an Informative Hypothesis, 2017. URL https://CRAN.R-project.org/package=complexity. R package version 1.1.2.
complexity <- function(npar,...){
require(combinat)
values <- c(1:npar) #the parameters to permute
perm <- permn(values) #all permutations in a list
length <- length(perm) #number of permutations
perm.matrix <- matrix(unlist(perm),length, byrow=TRUE)
#permutations in rows of matrix
dim <- dim(perm.matrix) #length and width of permutation matrix
z <- matrix(unlist(list(...)),ncol=2,byrow=TRUE)
#one set of restriction values in each row
dimz <- dim(z)
n <- dimz[1] #number of restrictions
logical <- logical.last <- rep(0, nrow=dimz[1], ncol=1)
#empty vectors with length perm.matrix
for (i in 1:n){
logical <- logical.last #fill logical with logical.last
z1<- z[i,1] #get first restriction value
z2<- z[i,2] #get second restriction value
logical <- #restrictions, TRUEs and FALSES saved in logical
perm.matrix[,z1]<perm.matrix[,z2] #see if 1st restr. value column < 2nd restr.
perm.matrix <- matrix(perm.matrix[logical],ncol=dim[2])
#save TRUE selection in perm.matrix
dimp <- dim(perm.matrix) #dimensions of new matrix
logical.last <- rep(0,nrow=dimp[1],ncol=1)
#new empty vector with length new matrix
}
y <- sum(logical) #number of TRUEs in set
true <- perm.matrix #matrix with TRUE permutations
prop <- y/length #TRUE n / total n = complexity
list("true permutations" = true,
"total number of permutations"=length,
"number true"=y, "complexity (proportion)"=prop)}