renderVtree {vtree} | R Documentation |
vtree widget
Description
Shiny bindings for vtree
Usage
renderVtree(expr, env = parent.frame(), quoted = FALSE)
Arguments
expr |
an expression that generates a variable tree |
env |
the environment in which to evaluate |
quoted |
is |
See Also
Other Shiny Functions:
init_js()
,
inlineCssSetup()
,
use_svgzoom()
,
vtreeOutput()
Examples
## Not run:
library(shiny)
library(vtree)
ui <- fluidPage(
vtreeOutput("vtree", width = "100%", height = "800px")
)
server <- function(input, output, session) {
output$vtree <- renderVtree({
vtree(FakeData,"Severity Sex",
labelnode=list(Sex=(c("Male"="M","Female"="F"))),
pngknit=FALSE)
})
}
shinyApp(ui, server)
## End(Not run)
[Package vtree version 5.6.5 Index]