R/plot_RTR.R

library(ggplot2)

#' Title
#'
#' @param region
#'
#' @return
#' @export
#'
#' @examples
PlotRTR <- function(region){
    province = region

    rtrRegion <- dplyr::filter(RTR, region == province)

    ggplot(rtrRegion, aes(x=longitude, y=latitude))+
      geom_point(size = .2)

}
kklamsi/howToPackage documentation built on May 30, 2019, 6:18 p.m.