ui_files/qqPlot.R

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")
  )
)
ppernot/ErrView documentation built on Jan. 30, 2022, 6:59 a.m.