mcMITest: Wrapper around the bnlearn mc-x2 test

Description Usage Arguments Value Examples

View source: R/citest.R

Description

Implements the mc-mi test in format needed for pcalg.

Usage

1
mcMITest(x, y, S, suffStat)

Arguments

x

the index of the first variable

y

the index of the second variable

S

the conditioning set

suffStat

the sufficient statistics to do the test, in this case a list of one element: dm where the values matrix is stored

Value

p value of the test

Examples

1
2
3
4
5
suffStat <- list(dm = cbind("a"=c(0,1,0,0,1,0), "b"=c(1,0,0,0,1,0), "c"=c(0,0,0,1,1,1)))
# test if a is independent of b
mcMITest(1, 2, NULL, suffStat)
# test if a is independent of b conditioned on c
mcMITest(1, 2, 3, suffStat)

ddgraph documentation built on Nov. 17, 2017, 10:50 a.m.