display {interactiveDisplayBase} | R Documentation |
This opens a shiny visualization application in the browser based on the submitted object.
display(object, ...)
object |
data object to display |
... |
additional arguments passed to methods; currently unused. |
Usually some variation of the initial input object, but it may be altered by the display widget (subset for example).
Shawn Balcome and Marc Carlson
http://bioconductor.org/packages/2.13/bioc/html/interactiveDisplayBase.html
if(interactive()) { ## draw a data.frame display(mtcars) ## subset a data.frame: mtcars2 <- display(mtcars) }