BICMultiFunctions {MoTBFs} | R Documentation |
BIC score for multiple functions
Description
Compute the BIC score using more than one probability functions.
Usage
BICMultiFunctions(Px, X)
Arguments
Px |
A list of objects of class |
X |
A list with as many |
Value
The "numeric"
BIC value.
See Also
Examples
## Data
X <- rnorm(500)
Y <- rnorm(500, mean=1)
data <- data.frame(X=X, Y=Y)
## Data as a "list"
Xlist <- sapply(data, list)
## Learning as a "list"
Plist <- lapply(data, univMoTBF, POTENTIAL_TYPE="MOP")
Plist
## BIC value
BICMultiFunctions(Px=Plist, X=Xlist)
[Package MoTBFs version 1.4.1 Index]