FreddyHernandez's picture
Duplicate from FreddyHernandez/poisson
37fb20e
raw
history blame
1.21 kB
library(shiny)
# Define UI for application that draws a histogram
shinyUI(fluidPage(
# Application title
titlePanel("Distribución Poisson"),
# Sidebar with a slider input for the number of bins
sidebarLayout(
sidebarPanel(
p("Modifique los valores de los parámetros y observe
lo que sucede en el diagrama"),
br(),
sliderInput(inputId = "l",
label = HTML("Media λ:"),
min = 0,
max = 40,
value = 5,
step= .1,
animate = TRUE),
numericInput(inputId = "n",
label = "Ingrese el máximo valor de x para el cual desea ver las probabilidades:",
min = 10,
max = 500,
value = 20,
step= 1),
br(),
p("App creada por el Semillero de R de la Universidad Nacional de Colombia:"),
tags$a(href="https://srunal.github.io/",
"https://srunal.github.io/")
),
# Show a plot of the generated distribution
mainPanel(
h3("Diagrama de barras para las probabilidades", align = "center"),
plotOutput("grafico1")
)
)
))