powered by
Function to compare two or more posterior distributions and test a hypothesis, in a Bayesian context
pairwiseComparisons(df, test = "
a symmetrical matrix with probabilities given sum(dist1 >= dist2) / length(dist1) for each comparison.
data frame with a collection of numerical values (posterior samples) to be compared.
string with the logical test to be used in comparisons. Can be <, <=, > or >=.
logical value to indicate whether the output should be printed or not.
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))
Run the code above in your browser using DataLab