belplau {dst}R Documentation

Calculation of the degrees of Belief and Plausibility of a basic chance assignment (bca).

Description

Degrees of Belief Bel and Plausibility Pl of the focal elements of a bca are computed. The ratio of the plausibility of a focal element against the plausibility of its contrary is also computed. Subsets with zero mass can be excluded from the calculations.

Usage

belplau(x, remove = FALSE, h = NULL)

Arguments

x

A basic chance assignment mass function (see bca).

remove

= TRUE: Exclude subsets with zero mass.

h

= NULL: Hypothesis to be tested. Description matrix in the same format than x$tt

Details

The degree of belief Bel is defined by:

bel(A) = Sum((m(B); B \subseteq A))

for every subset B of A.
The degree of plausibility pl is defined by:

pl(A) = Sum[(m(B); B \cap A \neq \emptyset]

for every subset B of the frame of discernment.
The plausibility ratio of a focal element A versus its contrary not A is defined by: Pl(A)/(1-Bel(A)).

Value

A matrix of M rows by 3 columns is returned, where M is the number of focal elements:

Author(s)

Claude Boivin, Peiyuan Zhu

References

Examples

x <- bca(tt = matrix(c(0,1,1,1,1,0,1,1,1),nrow = 3, 
byrow = TRUE), m = c(0.2,0.5, 0.3), 
cnames = c("a", "b", "c"), varnames = "x", idvar = 1)
belplau(x)
y <- bca(tt = matrix(c(1,0,0,1,1,1),nrow = 2, 
byrow = TRUE), m = c(0.6, 0.4),  
cnames = c("a", "b", "c"),  varnames = "y", idvar = 1)
xy <- nzdsr(dsrwon(x,y))
belplau(xy)
print("compare all elementary events")
xy1 <- addTobca(x = xy, tt = matrix(c(0,1,0,0,0,1), nrow = 2, byrow = TRUE))
belplau(xy1) 
belplau(xy1, remove = TRUE) 
belplau(xy1, h = matrix(c(1,0,0,0,1,1), nrow = 2, byrow = TRUE))


[Package dst version 1.6.0 Index]