cov2.mxPBF | R Documentation |
Not Written Here - No Reference Yet.
cov2.mxPBF(X, Y, a0 = 2, b0 = 2, gamma = 1, nthreads = 1)
X |
an |
Y |
an |
a0 |
shape parameter for inverse-gamma prior. |
b0 |
scale parameter for inverse-gamma prior. |
gamma |
non-negative variance scaling parameter. |
nthreads |
number of threads for parallel execution via OpenMP. |
a (list) object of S3
class htest
containing:
maximum of pairwise Bayes factor.
alternative hypothesis.
name of the test.
name(s) of provided sample data.
matrix of pairwise Bayes factors in natural log.
## Not run:
## empirical Type 1 error with BF threshold = 20
niter = 12345
counter = rep(0,niter) # record p-values
for (i in 1:niter){
X = matrix(rnorm(50*5), ncol=10)
Y = matrix(rnorm(50*5), ncol=10)
counter[i] = ifelse(cov2.mxPBF(X,Y)$statistic > 20, 1, 0)
}
## print the result
cat(paste("\n* Example for 'cov2.mxPBF'\n","*\n",
"* number of rejections : ", sum(counter),"\n",
"* total number of trials : ", niter,"\n",
"* empirical Type 1 error : ",round(sum(counter/niter),5),"\n",sep=""))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.