-
-
Save danslimmon/6934973 to your computer and use it in GitHub Desktop.
Defines the browser part of my error tracking Shiny app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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