inst/apps/rcapture/ui.R

library(shiny)
library(shinycssloaders)
source("ui-intro.R")
source("ui-import.R")
source("ui-loglinear.R")
source("ui-dga.R")
source("ui-lcmcr.R")
source("ui-pairwise.R")





# Define UI for application that draws a histogram
shinyUI(
  navbarPage(
    "Multiple Source Capture Recapture Analysis",
    ## Define conditional panels for selected tab
    renderIntroPanel(),
    renderImportDataPanel(),
    tabPanel(
      "Analysis",
      tabsetPanel(
        renderLogLinear(),
        renderDga(),
        renderLcmcr(),
        renderPairwise()
      )
    )
  )

)

Try the shinyrecap package in your browser

Any scripts or data that you put into this service are public.

shinyrecap documentation built on May 1, 2019, 10:10 p.m.