compute the most probable values to be observed.
get.most.probable.values.RdReturn an array containing the values that each variable of the network is more likely to take, according to the CPTS. In case of ties take the first value.
Usage
get.most.probable.values(x, prev.values = NULL)
# S4 method for BN
get.most.probable.values(x, prev.values = NULL)
# S4 method for InferenceEngine
get.most.probable.values(x, prev.values = NULL)Arguments
- x
a
BNorInferenceEngineobject.- prev.values
vector of size
num.nodescontaining an existing observation to complete (NULL if none).
Examples
if (FALSE) {
# try with a BN object x
get.most.probable.values(x)
# now build an InferenceEngine object
eng <- InferenceEngine(x)
get.most.probable.values(eng)
}