# Source file: sector_plot.R
#
# MIT License
#
# Copyright (c) 2019 Victor Ordu
#' Plot the Services for a Single Sector Selected
#'
#' @param data The data frame
#'
#' @import ggplot2
#'
#' @export
single_sector_services_plot <- function(data) {
ggplot(data, aes(name, fill = name)) +
geom_bar()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.