#' UI for barplot module
#'
#' @param id string used to namespace module
#' @return an UI snippet
#' @import shiny
#' @import plotly
#' @noRd
barplot_ui <- function (id) {
ns <- shiny::NS(id)
shiny::tagList(
plotly::plotlyOutput(ns("barplot"), height = "500px")
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.