File size: 1,114 Bytes
9cd4d47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  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")
 )
 )
))