BICMultiFunctions | R Documentation |
Compute the BIC score using more than one probability functions.
BICMultiFunctions(Px, X)
Px |
A list of objects of class |
X |
A list with as many |
The "numeric"
BIC value.
univMoTBF
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.