Precipitation in MA

Zahra Mohammadi
2/15/2021

Introduction

This Shiny app shows precipitation in Massachusettes in different stations

How to use the application

Just slide the handle

User interface code (ui.R)

library(shiny)
# Load Data
Precipitation <- read.csv('2296351.csv')

# Define UI for application that draws a histogram
shinyUI(fluidPage(

    # Application title
    titlePanel("Precipition In MA"),

    # Sidebar with a slider input for number of bins
    sidebarLayout(
        sidebarPanel(
            sliderInput("bins",
                        "Number of bins:",
                        min = 1,
                        max = 50,
                        value = 30)
        ),

        # Show a plot of the generated distribution
        mainPanel(
            plotOutput("distPlot")
        )
    )
))

<!–html_preserve–>

Precipition In MA

<!–/html_preserve–>

server code (server.R)

library(shiny)

# Define server logic required to draw a histogram
shinyServer(function(input, output) {

    output$distPlot <- renderPlot({

        # generate bins based on input$bins from ui.R
        x    <- faithful[, 2]
        bins <- seq(min(x), max(x), length.out = input$bins + 1)

        # draw the histogram with the specified number of bins
        hist(x, breaks = bins, col = 'darkgray', border = 'white')

    })

})