Output and render functions for using networkD3 widgets within Shiny applications and interactive Rmd documents.
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)
output variable to read from
Must be a valid CSS unit (like "100%"
,
"400px"
, "auto"
) or a number, which will be coerced to a
string and have "px"
appended.
An expression that generates a networkD3 graph
The environment in which to evaluate expr
.
Is expr
a quoted expression (with quote()
)? This
is useful if you want to save an expression in a variable.