#' Remove Non-US Trained surgeons
#' @description use medciare variable us_medschool based on ABS and AMA
#'
#' @param data medicare data
#'
#' @return medicare data without non-US trained surgeons
#' @export
#'
#' @examples
remove_nonUS_trained <- function(data) {
data %>%
filter(us_medschool == "USMG")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.