R/sector_plot.R

Defines functions single_sector_services_plot

Documented in single_sector_services_plot

# 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()
}
BroVic/raampGBV documentation built on Oct. 7, 2022, 11:06 p.m.