README.md

bnviewer - Interactive Visualization of Bayesian Networks

Bayesian networks provide an intuitive framework for probabilistic reasoning and its graphical nature can be interpreted quite clearly. Graph based methods of machine learning are becoming more popular because they offer a richer model of knowledge that can be understood by a human in a graphical format. The 'bnviewer' is an R Package that allows the interactive visualization of Bayesian Networks. The aim of this package is to improve the Bayesian Networks visualization over the basic and static views offered by existing packages.

This package originated from my Master's project in Mathematics, Statistics and Applied Computing to Industry at the Institute of Mathematical and Computer Sciences of the University of São Paulo - ICMC-USP, under the supervision of Prof. Dr. Alneu Andrade Lopes and co-supervision of Dr. Brett Drury.

Support for the structure learning algorithms below:

Constraint-based structure learning algorithms:

Score-based structure learning algorithms:

Hybrid structure learning algorithms:

Local discovery algorithms:

You can install the stable version of bnviewer from CRAN:

install.packages("bnviewer")

bnviewer is available for developers, install from GitHub.

install.packages("devtools")
devtools::install_github("robson-fernandes/bnviewer")

How to Use

Import the bnlearn and bnviewer packages

library(bnlearn)
library(bnviewer)

Import the desired dataset and apply a structure learning algorithm. Example (Hill-Climbing (HC)).

data("alarm")
bn.learn.hc = hc(alarm)

How to use - Viewer function

Call the viewer function of the bnviewer package with the desired parameters.

viewer(bn.learn.hc,
    bayesianNetwork.width = "100%",
    bayesianNetwork.height = "80vh",
    bayesianNetwork.layout = "layout_with_sugiyama",
    bayesianNetwork.title="Discrete Bayesian Network - Alarm",
    bayesianNetwork.subtitle = "Monitoring of emergency care patients",
    bayesianNetwork.footer = "Fig. 1 - Layout with Sugiyama"
)

Example of Bayesian network visualization with custom nodes and grid layout.

viewer(bn.learn.hc,
    bayesianNetwork.width = "100%",
    bayesianNetwork.height = "80vh",
    bayesianNetwork.layout = "layout_on_grid",
    bayesianNetwork.title="Discrete Bayesian Network - Alarm",
    bayesianNetwork.subtitle = "Monitoring of emergency care patients",
    bayesianNetwork.footer = "Fig. 2 - Layout on grid",

    node.colors = list(background = "#f4bafd",
                        border = "#2b7ce9",
                        highlight = list(background = "#97c2fc",
                                        border = "#2b7ce9"))

)

Example of Bayesian network visualization with custom nodes and circle layout.

viewer(bn.learn.hc,
     bayesianNetwork.width = "100%",
     bayesianNetwork.height = "80vh",
     bayesianNetwork.layout = "layout_in_circle",
     bayesianNetwork.title="Discrete Bayesian Network - Alarm",
     bayesianNetwork.subtitle = "Monitoring of emergency care patients",
     bayesianNetwork.footer = "Fig. 1 - Layout in circle",

     node.colors = list(background = "red",
                        border = "black",
                        highlight = list(background = "black",
                                         border = "red"))

)



robson-fernandes/bnviewer documentation built on Sept. 14, 2020, 7:26 a.m.