
Last chance! 50% off unlimited learning
Sale ends in
Simulate random data from a given Bayesian network.
# S3 method for bn
rbn(x, n = 1, data, fit = "mle", …, debug = FALSE)
# S3 method for bn.fit
rbn(x, n = 1, …, debug = FALSE)
an object of class bn
or bn.fit
.
a positive integer giving the number of observations to generate.
a data frame containing the data the Bayesian network was learned from.
a character string, the label of the method used to fit the
parameters of the newtork. See bn.fit
for details.
additional arguments for the parameter estimation prcoedure, see
again bn.fit
for details..
a boolean value. If TRUE
a lot of debugging output is
printed; otherwise the function is completely silent.
A data frame with the same structure (column names and data types) of the
data
argument (if x
is an object of class bn
) or with
the same structure as the data originally used to to fit the parameters of
the Bayesian network (if x
is an object of class bn.fit
).
Korb K, Nicholson AE (2010). Bayesian Artificial Intelligence. Chapman & Hall/CRC, 2nd edition.
# NOT RUN {
data(learning.test)
res = gs(learning.test)
res = set.arc(res, "A", "B")
par(mfrow = c(1,2))
plot(res)
sim = rbn(res, 500, learning.test)
plot(gs(sim))
# }
Run the code above in your browser using DataLab