CBCI.Rd
Computes the Conditional Independence Bertin Classification Index which uses conditional independence as a reference for normalization. High values indicate that the BCC is not far from the expectation if we know the two marginal 2D BBC values.
CBCI(x, r = 1, joint.order = FALSE)
x | The 3D table with non-negative entries. |
---|---|
r | The index of the conditioning variable, e.g. |
joint.order | Whether or not to use a joint ordering for all variables. Otherwise the pairwise values are computed using separate reorderings. |
The BCI of a 3D table but instead of the total independence case the conditional independence case is used for normalization.
Numeric value in [0,1].
# NOT RUN { A <- optile(arsim(10000, c(11,12,13), 4,0.1)) BCI(A) CBCI(A,1,TRUE) CBCI(A,1,FALSE) # }