Description Usage Arguments Details Value Author(s) Examples
Build a model string from a Bayesian network and vice versa.
1 2 3 4 5 6 7 8 9 | modelstring(x)
modelstring(x, debug = FALSE) <- value
model2network(string, ordering = NULL, debug = FALSE)
## S3 method for class 'bn'
as.character(x, ...)
## S3 method for class 'character'
as.bn(x)
|
x |
an object of class |
string |
a character string describing the Bayesian network. |
ordering |
the labels of all the nodes in the graph; their order is the
node ordering used in the construction of the |
value |
a character string, the same as the |
debug |
a boolean value. If |
... |
extra arguments from the generic method (currently ignored). |
The strings returned by modelstring
have the same format as
the ones returned by the modelstring
function in package
deal; network structures may be easily exported to and imported
from that package (via the model2network
function).
model2network
and as.bn
return an object of
class bn
; modelstring
and as.character.bn
return
a character string.
Marco Scutari
1 2 3 4 5 6 7 | data(learning.test)
res = set.arc(gs(learning.test), "A", "B")
res
modelstring(res)
res2 = model2network(modelstring(res))
res2
all.equal(res, res2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.