Skip to content

Instantly share code, notes, and snippets.

@danslimmon
Created October 11, 2013 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danslimmon/6934973 to your computer and use it in GitHub Desktop.
Save danslimmon/6934973 to your computer and use it in GitHub Desktop.
Defines the browser part of my error tracking Shiny app.
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("PHP errors by time"),
sidebarPanel(
checkboxGroupInput("errors_shown", "Most common errors:", c(
"davidbowie.php:50"="lib/exosite/robot/davidbowie.php:50",
"heehaw.php:728"="inc/spoot/heehaw.php:728",
"davidbowie.php:205"="lib/exosite/robot/davidbowie.php:205",
"heehaw.php:899"="inc/spoot/heehaw.php:899",
"llamas-06.php:70"="inc/widgets/llamas-06.php:70",
"llamas-03.php:63"="inc/widgets/llamas-03.php:63",
"llamas-12.php:79"="inc/widgets/llamas-12.php:79",
"flimflam.php:3775"="inc/crunch/flimflam.php:3775",
"bibbitybop.php:130"="inc/crunch/bibbitybop.php:130",
"flimflam.php:576"="inc/spoot/flimflam.php:576",
"bibbitybop.php:182"="inc/crunch/bibbitybop.php:182",
"flimflam.php:3776"="inc/crunch/flimflam.php:3776",
"davidbowie.php:27"="lib/exosite/robot/davidbowie.php:27",
"heehaw.php:897"="inc/spoot/heehaw.php:897",
"swirl.php:157"="lib/exosite/robot/tree/swirl.php:157",
"llamas-10.php:84"="inc/widgets/llamas-10.php:84"
)
)),
mainPanel(
plotOutput("freqPlot")
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment