Spaces:
Sleeping
Sleeping
library(shiny) | |
shinyUI(fluidPage( | |
# Application title | |
titlePanel("Distribuci贸n Zero Inflated Poisson (ZIP)"), | |
sidebarLayout( | |
sidebarPanel( | |
HTML("En la distribuci贸n ZIP el par谩metro λ representa | |
la media de la distribuci贸n Poisson y | |
Prop representa el porcentaje de exceso de ceros."), | |
br(), | |
p("Modifique los valores de los par谩metros y | |
observe lo que sucede en el gr谩fico."), | |
br(), | |
sliderInput("mu", HTML("Media de la Poisson, λ:"), | |
min = 0, | |
max = 15, | |
step= 0.5, | |
value = 5, | |
animate = TRUE), | |
sliderInput("Prop", | |
"Porcentaje de la distribuci贸n concentrada en cero:", | |
min = 0.0001, | |
max = .9999, | |
step=0.05, | |
value = 0.5, | |
animate =TRUE), | |
numericInput("xmax", | |
"Ingrese el m谩ximo valor de x para el cual desea ver las probabilidades:", | |
min = 5, | |
max = 50, | |
step= 1, | |
value = 15), | |
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( | |
plotOutput("distPlot") | |
) | |
) | |
)) | |