Demo distribution with three variables ${X, Y, Z}$ representing three fair coins, i.e. all variables are binary with values ${0,1}$, and consider the following random experiment: two coins are randomly tossed and the third one is laid on a table in the way that the number of '\,$1$\!' is odd. This experiment is fully described by probability distribution, values of which are in the following table

XYZMUDIM.frequency
0010.25
0100.25
1000.25
1110.25
data(Kappa)

Format

An object of class Distribution;

Examples

data(coins) getVariables(coins)
#> [1] "X" "Y" "Z"
dim(coins)
#> [1] 3
dTable(coins)
#> X Y Z MUDIM.frequency #> 1: 0 0 1 0.25 #> 2: 0 1 0 0.25 #> 3: 1 0 0 0.25 #> 4: 1 1 1 0.25