# 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]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.