With the recent rgl package for R (3.3.1, Windows 10), I can create interactive 3D graphics in a Shiny application. However, I get a long unwanted text output.
How can I suppress this conclusion?
Here is the code for an exemplary brilliant application that leads to unwanted text output:
library(shiny)
library(rgl)
library(shinyRGL)
aShinyList = list(
ui = webGLOutput("myWebGL"),
server = function(input,output, session)( output$myWebGL <- renderWebGL({
points3d(1:10, 1:10, 1:10)
axes3d()
}))
)
runApp(aShinyList)
Here is a screenshot of the result I get:

source
share