sidebarLayout(
sidebarPanel(
width = sideWidth,
h4("Errors vs. Normal"),
hr( style="border-color: #666;"),
uiOutput("methodsQQ"),
checkboxInput(
'removeGlobOutQQ',
label = 'Remove glob. outl.',
value = FALSE
),
hr( style="border-color: #666;"),
checkboxInput(
'ppNorm',
label = 'Proba-Proba plot',
value = FALSE
),
checkboxInput(
'ciQQ',
label = 'Confidence interval',
value = FALSE
),
checkboxInput(
'regQQ',
label = 'Inter-quartile Reg. line',
value = FALSE
),
sliderInput(
'limQQ',
label = 'Range of plot',
min = 0,
max = 8,
step = 1,
value = 5
)
),
mainPanel(
width = mainWidth,
plotOutput("plotQQ")
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.