textOutput
From shiny v0.5.0
by Winston Chang
Create a text output element
Render a reactive output variable as text within an
application page. The text will be included within an
HTML div
tag.
Usage
textOutput(outputId)
Arguments
- outputId
- output variable to read the value from
Details
Text is HTML-escaped prior to rendering. This element is often used to display renderText output variables.
Value
- A text output element that can be included in a panel
Examples
h3(textOutput("caption"))
Community examples
Looks like there are no examples yet.