Skip to contents

A generic wrapper that pairs a Shiny render function with its corresponding output function. For common cases, use the convenience wrappers PlotOutput(), TableOutput(), or DTOutput().

Usage

Output(render_fn, output_fn, expr, ..., env = parent.frame(), quoted = FALSE)

Arguments

render_fn

A Shiny render function (e.g. renderPlot).

output_fn

A Shiny output function (e.g. plotOutput).

expr

An expression passed to render_fn.

...

Additional arguments passed to output_fn.

env

The environment in which to evaluate expr.

quoted

If TRUE, expr is already a quoted expression.

Value

A nacre output node.