Output and render functions for using networkD3 widgets within Shiny applications and interactive Rmd documents.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | chordNetworkOutput(outputId, width = "100%", height = "500px")
renderchordNetwork(expr, env = parent.frame(), quoted = FALSE)
dendroNetworkOutput(outputId, width = "100%", height = "800px")
renderDendroNetwork(expr, env = parent.frame(), quoted = FALSE)
diagonalNetworkOutput(outputId, width = "100%", height = "800px")
renderDiagonalNetwork(expr, env = parent.frame(), quoted = FALSE)
forceNetworkOutput(outputId, width = "100%", height = "500px")
renderForceNetwork(expr, env = parent.frame(), quoted = FALSE)
radialNetworkOutput(outputId, width = "100%", height = "800px")
renderRadialNetwork(expr, env = parent.frame(), quoted = FALSE)
sankeyNetworkOutput(outputId, width = "100%", height = "500px")
renderSankeyNetwork(expr, env = parent.frame(), quoted = FALSE)
simpleNetworkOutput(outputId, width = "100%", height = "500px")
renderSimpleNetwork(expr, env = parent.frame(), quoted = FALSE)
|
outputId |
output variable to read from |
width, height |
Must be a valid CSS unit (like |
expr |
An expression that generates a networkD3 graph |
env |
The environment in which to evaluate |
quoted |
Is |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.