Distribucion_empirica/ui.R

#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
# 
#    http://shiny.rstudio.com/
#

library(shiny)

# Define UI for application that draws a histogram
shinyUI(fluidPage(
  
  # Application title
  titlePanel("Old Faithful Geyser Data"),
  
  # Sidebar with a slider input for number of bins 
  sidebarLayout(
    sidebarPanel(
       sliderInput("bins",
                   "Number of bins:",
                   min = 1,
                   max = 50,
                   value = 30),
       
        checkboxInput(inputId = "emp",
                     label = "Distribución Empírica",
                     value = FALSE),
       
        checkboxInput(inputId = "teo",
                     label = "Distribución Teórica",
                     value = FALSE),
       
       radioButtons("dist", "Distribution type:",
                    c("Normal" = "norm",
                      "Uniform" = "unif",
                      "Log-normal" = "lnorm",
                      "Exponential" = "exp"))
       )
    ,

    
    # Show a plot of the generated distribution
    mainPanel(
       plotOutput("distPlot"),
       verbatimTextOutput("summary")
       
    )
  )
))
lcecheverris/R-creative documentation built on May 6, 2019, 4:59 p.m.