Spaces:
Sleeping
Sleeping
library(shiny) | |
shinyUI(fluidPage( | |
# Application title | |
titlePanel("Distribuci贸n Zero Truncated Poisson (ZTP)"), | |
sidebarLayout( | |
sidebarPanel( | |
HTML("En la distribuci贸n ZTP el par谩metro λ representa | |
la media de la distribuci贸n Poisson, en esta distribuci贸n | |
no hay ceros, est谩 truncada en cero e inicia en 1."), | |
br(), | |
p("Modifique los valores de los par谩metros y | |
observe lo que sucede en el gr谩fico."), | |
br(), | |
sliderInput("lambda", HTML("Media de la Poisson, λ:"), | |
min = 0, | |
max = 15, | |
step= 0.5, | |
value = 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") | |
) | |
) | |
)) | |