renderTable
From shiny v0.12.2
by Winston Chang
Table Output
Creates a reactive table that is suitable for assigning to an output
slot.
Usage
renderTable(expr, ..., env = parent.frame(), quoted = FALSE, func = NULL)
Arguments
- expr
- An expression that returns an R object that can be used with
xtable
. - ...
- Arguments to be passed through to
xtable
andprint.xtable
. - env
- The environment in which to evaluate
expr
. - quoted
- Is
expr
a quoted expression (withquote()
)? This is useful if you want to save an expression in a variable. - func
- A function that returns an R object that can be used with
xtable
(deprecated; useexpr
instead).
Details
The corresponding HTML output tag should be div
and have the CSS class
name shiny-html-output
.
Community examples
Looks like there are no examples yet.