Skip to content

Instantly share code, notes, and snippets.

@wush978
Created June 30, 2014 12:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wush978/8db062e86c215345e279 to your computer and use it in GitHub Desktop.
Save wush978/8db062e86c215345e279 to your computer and use it in GitHub Desktop.
Show sessionInfo of shiny server
library(shiny)
shinyServer(function(input, output) {
output$sessionInfo <- renderPrint({
capture.output(sessionInfo())
})
})
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("SessionInfo"),
sidebarPanel(
),
mainPanel(
htmlOutput("sessionInfo")
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment