| pairwiseComparisons | R Documentation | 
Function to compare two or more posterior distributions and test a hypothesis, in a Bayesian context
pairwiseComparisons(df, test = "<=", print = FALSE)
| df | data frame with a collection of numerical values (posterior samples) to be compared. | 
| test | string with the logical test to be used in comparisons. Can be <, <=, > or >=. | 
| print | logical value to indicate whether the output should be printed or not. | 
a symmetrical matrix with probabilities given sum(dist1 >= dist2) / length(dist1) for each comparison.
a <- rnorm(100, 2, 0.1)
b <- rnorm(100, 1.8, 0.1)
c <- rnorm(100, 2.2, 0.1)
pairwiseComparisons(list("a" = a, "b" = b, "c" = c))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.