# NOT RUN {
## Asia (chest clinic) example:
yn <- c("yes","no")
a <- cptable(~asia, values=c(1,99), levels=yn)
t.a <- cptable(~tub+asia, values=c(5,95,1,99), levels=yn)
s <- cptable(~smoke, values=c(5,5), levels=yn)
l.s <- cptable(~lung+smoke, values=c(1,9,1,99), levels=yn)
b.s <- cptable(~bronc+smoke, values=c(6,4,3,7), levels=yn)
e.lt <- cptable(~either+lung+tub, values=c(1,0,1,0,1,0,0,1), levels=yn)
x.e <- cptable(~xray+either, values=c(98,2,5,95), levels=yn)
d.be <- cptable(~dysp+bronc+either, values=c(9,1,7,3,8,2,1,9), levels=yn)
plist <- compileCPT(list(a, t.a, s, l.s, b.s, e.lt, x.e, d.be))
bn <- grain(plist)
bn
summary(bn)
plot(bn)
bnc <- compile(bn, propagate=TRUE)
## If we want to query the joint distribution of the disease nodes,
## computations can be speeded up by forcing these nodes to be in
## the same clique of the junction tree:
bnc2 <- compile(bn, root=c("lung", "bronc", "tub"), propagate=TRUE)
system.time({
for (i in 1:200)
querygrain(bnc, nodes=c("lung","bronc", "tub"), type="joint")})
system.time({
for (i in 1:200)
querygrain(bnc2, nodes=c("lung","bronc", "tub"), type="joint")})
## Simple example - one clique only in triangulated graph:
plist.s <- compileCPT( list(a, t.a) )
bn.s <- grain( plist.s )
querygrain( bn.s )
## Simple example - disconnected network:
plist.d <- compileCPT( list(a, t.a, s) )
bn.d <- grain( plist.d )
querygrain( bn.d )
## Create network from data and graph specification.
## There are different ways:
data(HairEyeColor)
hec <- HairEyeColor
daG <- dag( ~Hair + Eye:Hair + Sex:Hair )
class( daG )
uG <- ug( ~Eye:Hair + Sex:Hair )
class( uG )
## Create directly from dag:
b1 <- grain( daG, hec )
class( b1 )
## Build model from undirected (decomposable) graph
b3 <- grain( uG, hec )
class( b3 )
# }
Run the code above in your browser using DataLab