File size: 1,183 Bytes
39c971f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
library(shiny)

shinyUI(fluidPage(
  
  # Application title
  titlePanel("Distribución log-normal"),
  
  sidebarLayout(
    sidebarPanel(
      p("Modifique los valores de los parámetros y observe 
        lo que sucede con la densidad."),
      br(),
      sliderInput(inputId = "mu",
                  label = HTML("Ingrese el valor de μ (meanlog):"),
                  min = 0,
                  max = 30,
                  value = 0.7,
                  step= 0.1,
                  animate =TRUE),
      sliderInput(inputId = "sigma",
                  label = HTML("Ingrese el valor de σ (sdlog): "),
                  min = 0.1,
                  max = 30,
                  value = 0.3,
                  step= 0.1,
                  animate =TRUE),
      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("Densidad para la distribución log-normal", align = "center"),
      plotOutput("grafico1"),
      verbatimTextOutput('med_var')
    )
  )
))