shiny {rgl} | R Documentation |
rglwidget
into
Shiny app.
These functions allow an rgl scene to be embedded in a Shiny app.
rglwidgetOutput(outputId, width = "512px", height = "512px") renderRglwidget(expr, env = parent.frame(), quoted = FALSE) playwidgetOutput(outputId, width = "0px", height = "0px") renderPlaywidget(expr, env = parent.frame(), quoted = FALSE)
outputId |
The name for the control. |
width, height |
Width and height to display the control. |
expr |
An R expression returning
a |
env |
The environment in which to evaluate |
quoted |
Is the expression already quoted? |
Use rglwidgetOutput
or playwidgetOutput
as an output
object in a Shiny user
interface section; use renderRglwidget
or renderPlaywidget
as the render
function in the server section.
Used internally by Shiny.
Duncan Murdoch