ui = fluidPage(theme = SMRD::add_theme(getShinyOption("theme")),
SMRD::add_css(),
sidebarLayout(
sidebarPanel(width = 3,
sliderInput("range.egeng",
label = "Range",
min = 0,
max = 50,
value = c(0,25)),
sliderInput("mu.egeng",
label = h2(HTML("μ")),
min = 0,
max = 10,
step = 0.5,
value = 1,
animate = TRUE),
sliderInput("sig.egeng",
label = h2(HTML("σ")),
min = 0.5,
max = 10,
step = 0.5,
value = 1,
animate = TRUE),
sliderInput("lam.egeng",
label = h2(HTML("λ")),
min = .5,
max = 10,
step = 0.5,
value = 1,
animate = TRUE)),
mainPanel(width = 9,
tabsetPanel(type = 'pills',
tabPanel('Distribution Function',metricsgraphicsOutput("egengC",height = "600px")),
tabPanel('Density', metricsgraphicsOutput("egengP",height = "600px")),
tabPanel('Survival', metricsgraphicsOutput("egengR",height = "600px")),
tabPanel('Hazard', metricsgraphicsOutput("egengh",height = "600px")),
tabPanel('Cumulative Hazard', metricsgraphicsOutput("egengH",height = "600px")),
tabPanel('Quantile', metricsgraphicsOutput("egengQ",height = "600px"))
))))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.