inst/shiny/UI/step3UI.R

# step3UI.R
#
# Purpose: Create the user interface for the step #3 (Visualize missingness by
# type) tab to visualize missingness by type through colour-coded heat maps.
#
# Date: 2019-11-27
#
# ==============================================================================

step3UI <- function() {
  tabItem(
    tabName = "step3",
    
    fluidRow(box(
      width = 12,
      height = 625,
      plotOutput("missingnessPlot") %>%
        withSpinner(type = 7, color = "#5BC0DE")
    )),
    
    br(),
    
    fluidRow(box(
      width = 12,
      actionButton(
        inputId = "nextStep3",
        label = "Next Step",
        class = "step-button"
      )
    ))
  )
}

# [END]
ahnjedid/dataprep-test documentation built on Jan. 5, 2021, 12:13 a.m.