Created
December 18, 2013 13:04
-
-
Save jjallaire/8021950 to your computer and use it in GitHub Desktop.
Shiny Example 04_mpg
This file contains 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) | |
library(datasets) | |
# We tweak the "am" field to have nicer factor labels. Since this doesn't | |
# rely on any user inputs we can do this once at startup and then use the | |
# value throughout the lifetime of the application | |
mpgData <- mtcars | |
mpgData$am <- factor(mpgData$am, labels = c("Automatic", "Manual")) | |
# Define server logic required to plot various variables against mpg | |
shinyServer(function(input, output) { | |
# Compute the forumla text in a reactive expression since it is | |
# shared by the output$caption and output$mpgPlot functions | |
formulaText <- reactive({ | |
paste("mpg ~", input$variable) | |
}) | |
# Return the formula text for printing as a caption | |
output$caption <- renderText({ | |
formulaText() | |
}) | |
# Generate a plot of the requested variable against mpg and only | |
# include outliers if requested | |
output$mpgPlot <- renderPlot({ | |
boxplot(as.formula(formulaText()), | |
data = mpgData, | |
outline = input$outliers) | |
}) | |
}) |
This file contains 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) | |
# Define UI for miles per gallon application | |
shinyUI(fluidPage( | |
# Application title | |
titlePanel("Miles Per Gallon"), | |
# Sidebar with controls to select the variable to plot against mpg | |
# and to specify whether outliers should be included | |
sidebarLayout( | |
sidebarPanel( | |
selectInput("variable", "Variable:", | |
c("Cylinders" = "cyl", | |
"Transmission" = "am", | |
"Gears" = "gear")), | |
checkboxInput("outliers", "Show outliers", FALSE) | |
), | |
# Show the caption and plot of the requested variable against mpg | |
mainPanel( | |
h3(textOutput("caption")), | |
plotOutput("mpgPlot") | |
) | |
) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment