Introduction

In this section we will:
* identify which Shoulder X-ray procedures were excluded and why * identify which different Shoulder X-ray subgroups were created and why

If you have questions or concerns about this data please contact Alexander Nielson ()

Load Libraries

Load Libraries

library(data.table)
library(tidyverse)
## Warning: replacing previous import 'vctrs::data_frame' by 'tibble::data_frame'
## when loading 'dplyr'
library(stringi)
library(ggridges)
library(broom)
library(disk.frame)
library(RecordLinkage)
library(googlesheets4)
library(bigrquery)
library(DBI)
devtools::install_github("utah-osa/hcctools2", upgrade="never" )
library(hcctools2)

Establish color palettes

cust_color_pal1 <- c(
        "Anesthesia" = "#f3476f",
        "Facility" = "#e86a33",
        "Medicine Proc" = "#e0a426",
        "Pathology" = "#77bf45",
        "Radiology" = "#617ff7",
        "Surgery" = "#a974ee"
    )

cust_color_pal2 <- c(
        "TRUE" = "#617ff7",
        "FALSE" = "#e0a426"
    )

cust_color_pal3 <- c(
        "above avg" = "#f3476f",
        "avg" = "#77bf45",
        "below avg" = "#a974ee"
    )



  fac_ref_regex <- "(UTAH)|(IHC)|(HOSP)|(HOSPITAL)|(CLINIC)|(ANESTH)|(SCOPY)|(SURG)|(LLC)|(ASSOC)|(MEDIC)|(CENTER)|(ASSOCIATES)|(U OF U)|(HEALTH)|(OLOGY)|(OSCOPY)|(FAMILY)|(VAMC)|(SLC)|(SALT LAKE)|(CITY)|(PROVO)|(OGDEN)|(ENDO )|( VALLEY)|( REGIONAL)|( CTR)|(GRANITE)|( INSTITUTE)|(INSTACARE)|(WASATCH)|(COUNTY)|(PEDIATRIC)|(CORP)|(CENTRAL)|(URGENT)|(CARE)|(UNIV)|(ODYSSEY)|(MOUNTAINSTAR)|( ORTHOPEDIC)|(INSTITUT)|(PARTNERSHIP)|(PHYSICIAN)|(CASTLEVIEW)|(CONSULTING)|(MAGEMENT)|(PRACTICE)|(EMERGENCY)|(SPECIALISTS)|(DIVISION)|(GUT WHISPERER)|(INTERMOUNTAIN)|(OBGYN)"

Connect to GCP database

bigrquery::bq_auth(path = 'D:/gcp_keys/healthcare-compare-prod-95b3b7349c32.json')

# set my project ID and dataset name
project_id <- 'healthcare-compare-prod'
dataset_name <- 'healthcare_compare'

con <- dbConnect(
  bigrquery::bigquery(),
  project = project_id,
  dataset = dataset_name,
  billing = project_id
)

Get NPI table

query <-  paste0("SELECT npi, clean_name, osa_group, osa_class, osa_specialization
                 FROM `healthcare-compare-prod.healthcare_compare.npi_full`")
                       
#bq_project_query(billing, query) # uncomment to determine billing price for above query.

npi_full <- dbGetQuery(con, query) %>%
  data.table() 

get a subset of the NPI providers based upon taxonomy groups

gs4_auth(email="alexnielson@utah.gov")
  npi_prov_pair <-  npi_full %>% 
    .[,.(npi=npi,
         clean_name = clean_name
         )
      ] 

Load Data

bun_proc <-  disk.frame("full_apcd.df")
xray_shld <- bun_proc[(radi_bun_t_xray==T | `radi_bun_t_x-ray`) &
                        tp_med >0 &
                        duration_max ==0 & 
                        radi_bun_t_shoulder==T & 
                         anes_bun_sum_med== 0 &
                         surg_bun_sum_med == 0 &
                        path_bun_sum_med ==0]
xray_shld %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 205 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 faci_bun_t_dept              0.646
##  2 faci_bun_t_emergency         0.646
##  3 radi_bun_t_without_dye       0.461
##  4 radi_bun_t_ct                0.458
##  5 radi_bun_t_brain             0.41 
##  6 radi_bun_t_head              0.406
##  7 medi_bun_t_inject            0.276
##  8 faci_bun_t_office            0.263
##  9 faci_bun_t_pat               0.263
## 10 radi_bun_t_chest             0.242
## # ... with 195 more rows
cols_to_check <-  xray_shld %>% select_if(is.logical)
tag_frequency <- apply(cols_to_check, 2, function(i) sum(i > 0)) %>% enframe() %>% as.data.table() %>% .[,.(tag=name, freq=value)]
outlier_tag_list <- tag_frequency[freq < 100] %>% .[["tag"]]
xray_shld_clean <- remove_bun_proc_with_rare_tags(outlier_tag_list=outlier_tag_list, df=xray_shld)
## [1] "Start of rare tag removal"
## [1] "nrow:14524 , ncol:1404"
## [1] "nrow:14524"
## [1] "removing: surg_bun_t_a-grft"
## [1] 14524
## [1] "removing: surg_bun_t_abd"
## [1] 14524
## [1] "removing: surg_bun_t_abdom"
## [1] 14524
## [1] "removing: surg_bun_t_abdomen"
## [1] 14524
## [1] "removing: surg_bun_t_ablate"
## [1] 14524
## [1] "removing: surg_bun_t_abortion"
## [1] 14524
## [1] "removing: surg_bun_t_abscess"
## [1] 14524
## [1] "removing: surg_bun_t_acell"
## [1] 14524
## [1] "removing: surg_bun_t_acellular"
## [1] 14524
## [1] "removing: surg_bun_t_acne"
## [1] 14524
## [1] "removing: surg_bun_t_acute"
## [1] 14524
## [1] "removing: surg_bun_t_add-on"
## [1] 14524
## [1] "removing: surg_bun_t_adenoid"
## [1] 14524
## [1] "removing: surg_bun_t_adjust"
## [1] 14524
## [1] "removing: surg_bun_t_airway"
## [1] 14524
## [1] "removing: surg_bun_t_amput"
## [1] 14524
## [1] "removing: surg_bun_t_anal"
## [1] 14524
## [1] "removing: surg_bun_t_analysis"
## [1] 14524
## [1] "removing: surg_bun_t_aneurysm"
## [1] 14524
## [1] "removing: surg_bun_t_ankle"
## [1] 14524
## [1] "removing: surg_bun_t_anoscopy"
## [1] 14524
## [1] "removing: surg_bun_t_ant"
## [1] 14524
## [1] "removing: surg_bun_t_antepartum"
## [1] 14524
## [1] "removing: surg_bun_t_aorta"
## [1] 14524
## [1] "removing: surg_bun_t_aortic"
## [1] 14524
## [1] "removing: surg_bun_t_aply"
## [1] 14524
## [1] "removing: surg_bun_t_appendectomy"
## [1] 14524
## [1] "removing: surg_bun_t_application"
## [1] 14524
## [1] "removing: surg_bun_t_apply"
## [1] 14524
## [1] "removing: surg_bun_t_approach"
## [1] 14524
## [1] "removing: surg_bun_t_arm"
## [1] 14524
## [1] "removing: surg_bun_t_art"
## [1] 14522
## [1] "removing: surg_bun_t_arterial"
## [1] 14522
## [1] "removing: surg_bun_t_artery"
## [1] 14522
## [1] "removing: surg_bun_t_arthro"
## [1] 14522
## [1] "removing: surg_bun_t_arthroplasty"
## [1] 14522
## [1] "removing: surg_bun_t_arthroscopy"
## [1] 14522
## [1] "removing: surg_bun_t_artificial"
## [1] 14522
## [1] "removing: surg_bun_t_augmentation"
## [1] 14522
## [1] "removing: surg_bun_t_autograft"
## [1] 14522
## [1] "removing: surg_bun_t_b9"
## [1] 14522
## [1] "removing: surg_bun_t_back"
## [1] 14522
## [1] "removing: surg_bun_t_balloon"
## [1] 14522
## [1] "removing: surg_bun_t_bed"
## [1] 14522
## [1] "removing: surg_bun_t_biceps"
## [1] 14522
## [1] "removing: surg_bun_t_bile"
## [1] 14522
## [1] "removing: surg_bun_t_bilobectomy"
## [1] 14522
## [1] "removing: surg_bun_t_biopsy"
## [1] 14522
## [1] "removing: surg_bun_t_bladder"
## [1] 14522
## [1] "removing: surg_bun_t_bleeding"
## [1] 14522
## [1] "removing: surg_bun_t_block"
## [1] 14522
## [1] "removing: surg_bun_t_blockage"
## [1] 14522
## [1] "removing: surg_bun_t_blood"
## [1] 14522
## [1] "removing: surg_bun_t_body"
## [1] 14520
## [1] "removing: surg_bun_t_bone"
## [1] 14520
## [1] "removing: surg_bun_t_bowel"
## [1] 14520
## [1] "removing: surg_bun_t_brace"
## [1] 14520
## [1] "removing: surg_bun_t_brain"
## [1] 14520
## [1] "removing: surg_bun_t_breast"
## [1] 14520
## [1] "removing: surg_bun_t_bronchial"
## [1] 14520
## [1] "removing: surg_bun_t_bronchoscopy"
## [1] 14520
## [1] "removing: surg_bun_t_brow"
## [1] 14520
## [1] "removing: surg_bun_t_bulge"
## [1] 14520
## [1] "removing: surg_bun_t_burn"
## [1] 14520
## [1] "removing: surg_bun_t_burr"
## [1] 14520
## [1] "removing: surg_bun_t_bursa"
## [1] 14514
## [1] "removing: surg_bun_t_buttck"
## [1] 14514
## [1] "removing: surg_bun_t_buttock"
## [1] 14514
## [1] "removing: surg_bun_t_byp"
## [1] 14514
## [1] "removing: surg_bun_t_bypass"
## [1] 14514
## [1] "removing: surg_bun_t_cabg"
## [1] 14514
## [1] "removing: surg_bun_t_canal"
## [1] 14514
## [1] "removing: surg_bun_t_cannula"
## [1] 14514
## [1] "removing: surg_bun_t_capillary"
## [1] 14514
## [1] "removing: surg_bun_t_capsule"
## [1] 14514
## [1] "removing: surg_bun_t_care"
## [1] 14514
## [1] "removing: surg_bun_t_carotid"
## [1] 14514
## [1] "removing: surg_bun_t_cartilage"
## [1] 14514
## [1] "removing: surg_bun_t_cast"
## [1] 14514
## [1] "removing: surg_bun_t_cath"
## [1] 14514
## [1] "removing: surg_bun_t_cavity"
## [1] 14514
## [1] "removing: surg_bun_t_cell"
## [1] 14514
## [1] "removing: surg_bun_t_cervix"
## [1] 14514
## [1] "removing: surg_bun_t_cesarean"
## [1] 14514
## [1] "removing: surg_bun_t_chamber"
## [1] 14514
## [1] "removing: surg_bun_t_change"
## [1] 14514
## [1] "removing: surg_bun_t_chemical"
## [1] 14514
## [1] "removing: surg_bun_t_chemodenerv"
## [1] 14514
## [1] "removing: surg_bun_t_chest"
## [1] 14514
## [1] "removing: surg_bun_t_chin"
## [1] 14514
## [1] "removing: surg_bun_t_cholangiogram"
## [1] 14514
## [1] "removing: surg_bun_t_cholangiopancreatograph"
## [1] 14514
## [1] "removing: surg_bun_t_cholecystoenterostomy"
## [1] 14514
## [1] "removing: surg_bun_t_chronic"
## [1] 14514
## [1] "removing: surg_bun_t_circulation"
## [1] 14514
## [1] "removing: surg_bun_t_circumcision"
## [1] 14514
## [1] "removing: surg_bun_t_clamp"
## [1] 14514
## [1] "removing: surg_bun_t_clavicle"
## [1] 14514
## [1] "removing: surg_bun_t_clearance"
## [1] 14514
## [1] "removing: surg_bun_t_cleft"
## [1] 14514
## [1] "removing: surg_bun_t_clitoris"
## [1] 14514
## [1] "removing: surg_bun_t_cloacal"
## [1] 14514
## [1] "removing: surg_bun_t_closed"
## [1] 14514
## [1] "removing: surg_bun_t_closure"
## [1] 14514
## [1] "removing: surg_bun_t_clot"
## [1] 14514
## [1] "removing: surg_bun_t_collar"
## [1] 14514
## [1] "removing: surg_bun_t_colon"
## [1] 14514
## [1] "removing: surg_bun_t_colonoscopy"
## [1] 14514
## [1] "removing: surg_bun_t_coloproctostomy"
## [1] 14514
## [1] "removing: surg_bun_t_colostomy"
## [1] 14514
## [1] "removing: surg_bun_t_complex"
## [1] 14514
## [1] "removing: surg_bun_t_compression"
## [1] 14514
## [1] "removing: surg_bun_t_contriction"
## [1] 14514
## [1] "removing: surg_bun_t_control"
## [1] 14514
## [1] "removing: surg_bun_t_cord"
## [1] 14514
## [1] "removing: surg_bun_t_cornea"
## [1] 14514
## [1] "removing: surg_bun_t_coronary"
## [1] 14514
## [1] "removing: surg_bun_t_coronoid"
## [1] 14514
## [1] "removing: surg_bun_t_correct"
## [1] 14514
## [1] "removing: surg_bun_t_cranial"
## [1] 14514
## [1] "removing: surg_bun_t_craniofacial"
## [1] 14514
## [1] "removing: surg_bun_t_cryotherapy"
## [1] 14514
## [1] "removing: surg_bun_t_cuff"
## [1] 14514
## [1] "removing: surg_bun_t_cult"
## [1] 14514
## [1] "removing: surg_bun_t_cyst"
## [1] 14514
## [1] "removing: surg_bun_t_cysto"
## [1] 14514
## [1] "removing: surg_bun_t_cystometrogram"
## [1] 14514
## [1] "removing: surg_bun_t_cystoscopy"
## [1] 14514
## [1] "removing: surg_bun_t_cystouretero"
## [1] 14514
## [1] "removing: surg_bun_t_debrid"
## [1] 14514
## [1] "removing: surg_bun_t_debride"
## [1] 14514
## [1] "removing: surg_bun_t_decompression"
## [1] 14514
## [1] "removing: surg_bun_t_deep"
## [1] 14514
## [1] "removing: surg_bun_t_defect"
## [1] 14514
## [1] "removing: surg_bun_t_defib"
## [1] 14514
## [1] "removing: surg_bun_t_deformity"
## [1] 14514
## [1] "removing: surg_bun_t_degenerated"
## [1] 14514
## [1] "removing: surg_bun_t_delivery"
## [1] 14514
## [1] "removing: surg_bun_t_deplet"
## [1] 14514
## [1] "removing: surg_bun_t_dermabrasion"
## [1] 14514
## [1] "removing: surg_bun_t_design"
## [1] 14514
## [1] "removing: surg_bun_t_destroy"
## [1] 14514
## [1] "removing: surg_bun_t_destruction"
## [1] 14514
## [1] "removing: surg_bun_t_dev"
## [1] 14514
## [1] "removing: surg_bun_t_device"
## [1] 14514
## [1] "removing: surg_bun_t_diagnostic"
## [1] 14514
## [1] "removing: surg_bun_t_dialysis"
## [1] 14514
## [1] "removing: surg_bun_t_diaphragm"
## [1] 14514
## [1] "removing: surg_bun_t_digit"
## [1] 14514
## [1] "removing: surg_bun_t_dilat"
## [1] 14514
## [1] "removing: surg_bun_t_dilation"
## [1] 14514
## [1] "removing: surg_bun_t_disc"
## [1] 14514
## [1] "removing: surg_bun_t_diskectomy"
## [1] 14514
## [1] "removing: surg_bun_t_dislocat"
## [1] 14512
## [1] "removing: surg_bun_t_dissect"
## [1] 14512
## [1] "removing: surg_bun_t_donar"
## [1] 14512
## [1] "removing: surg_bun_t_donor"
## [1] 14512
## [1] "removing: surg_bun_t_drain"
## [1] 14512
## [1] "removing: surg_bun_t_draw"
## [1] 14512
## [1] "removing: surg_bun_t_dressing"
## [1] 14512
## [1] "removing: surg_bun_t_drill"
## [1] 14512
## [1] "removing: surg_bun_t_drug"
## [1] 14512
## [1] "removing: surg_bun_t_duct"
## [1] 14512
## [1] "removing: surg_bun_t_duoden"
## [1] 14512
## [1] "removing: surg_bun_t_dura"
## [1] 14512
## [1] "removing: surg_bun_t_ear"
## [1] 14512
## [1] "removing: surg_bun_t_eardrum"
## [1] 14512
## [1] "removing: surg_bun_t_ectopic"
## [1] 14512
## [1] "removing: surg_bun_t_egd"
## [1] 14512
## [1] "removing: surg_bun_t_elbow"
## [1] 14512
## [1] "removing: surg_bun_t_electrical"
## [1] 14512
## [1] "removing: surg_bun_t_electrode"
## [1] 14512
## [1] "removing: surg_bun_t_electroejaculation"
## [1] 14512
## [1] "removing: surg_bun_t_electrolysis"
## [1] 14512
## [1] "removing: surg_bun_t_embolize"
## [1] 14512
## [1] "removing: surg_bun_t_embryo"
## [1] 14512
## [1] "removing: surg_bun_t_endo"
## [1] 14512
## [1] "removing: surg_bun_t_endoscopy"
## [1] 14512
## [1] "removing: surg_bun_t_endovas"
## [1] 14512
## [1] "removing: surg_bun_t_enlarge"
## [1] 14512
## [1] "removing: surg_bun_t_enterectomy"
## [1] 14512
## [1] "removing: surg_bun_t_epiderm"
## [1] 14512
## [1] "removing: surg_bun_t_epididymis"
## [1] 14512
## [1] "removing: surg_bun_t_epiphysis"
## [1] 14512
## [1] "removing: surg_bun_t_episiotomy"
## [1] 14512
## [1] "removing: surg_bun_t_esoph"
## [1] 14512
## [1] "removing: surg_bun_t_esophagoscopy"
## [1] 14512
## [1] "removing: surg_bun_t_esophagus"
## [1] 14512
## [1] "removing: surg_bun_t_exam"
## [1] 14512
## [1] "removing: surg_bun_t_exc"
## [1] 14512
## [1] "removing: surg_bun_t_excessive"
## [1] 14512
## [1] "removing: surg_bun_t_excise"
## [1] 14512
## [1] "removing: surg_bun_t_excision"
## [1] 14512
## [1] "removing: surg_bun_t_exostosis"
## [1] 14512
## [1] "removing: surg_bun_t_expander"
## [1] 14512
## [1] "removing: surg_bun_t_explora"
## [1] 14512
## [1] "removing: surg_bun_t_explore"
## [1] 14512
## [1] "removing: surg_bun_t_extra"
## [1] 14512
## [1] "removing: surg_bun_t_extremity"
## [1] 14512
## [1] "removing: surg_bun_t_eye"
## [1] 14512
## [1] "removing: surg_bun_t_eyelashes"
## [1] 14512
## [1] "removing: surg_bun_t_eyelid"
## [1] 14512
## [1] "removing: surg_bun_t_face"
## [1] 14512
## [1] "removing: surg_bun_t_fallopian"
## [1] 14512
## [1] "removing: surg_bun_t_fascia"
## [1] 14512
## [1] "removing: surg_bun_t_fat"
## [1] 14512
## [1] "removing: surg_bun_t_femur"
## [1] 14512
## [1] "removing: surg_bun_t_fibula"
## [1] 14512
## [1] "removing: surg_bun_t_finger"
## [1] 14512
## [1] "removing: surg_bun_t_fissure"
## [1] 14512
## [1] "removing: surg_bun_t_fistula"
## [1] 14512
## [1] "removing: surg_bun_t_fixation"
## [1] 14512
## [1] "removing: surg_bun_t_flap"
## [1] 14512
## [1] "removing: surg_bun_t_flow"
## [1] 14512
## [1] "removing: surg_bun_t_fluid"
## [1] 14512
## [1] "removing: surg_bun_t_fna"
## [1] 14512
## [1] "removing: surg_bun_t_follow-up"
## [1] 14512
## [1] "removing: surg_bun_t_foot"
## [1] 14512
## [1] "removing: surg_bun_t_forearm"
## [1] 14512
## [1] "removing: surg_bun_t_forehead"
## [1] 14512
## [1] "removing: surg_bun_t_foreign"
## [1] 14512
## [1] "removing: surg_bun_t_fracture"
## [1] 14511
## [1] "removing: surg_bun_t_free"
## [1] 14511
## [1] "removing: surg_bun_t_frontal"
## [1] 14511
## [1] "removing: surg_bun_t_fundoplasty"
## [1] 14511
## [1] "removing: surg_bun_t_fusion"
## [1] 14511
## [1] "removing: surg_bun_t_gallbladder"
## [1] 14511
## [1] "removing: surg_bun_t_gastrointestinal"
## [1] 14511
## [1] "removing: surg_bun_t_gastrostomy"
## [1] 14511
## [1] "removing: surg_bun_t_gentialia"
## [1] 14511
## [1] "removing: surg_bun_t_gi"
## [1] 14511
## [1] "removing: surg_bun_t_gland"
## [1] 14511
## [1] "removing: surg_bun_t_glaucoma"
## [1] 14511
## [1] "removing: surg_bun_t_graft"
## [1] 14511
## [1] "removing: surg_bun_t_growth"
## [1] 14511
## [1] "removing: surg_bun_t_gum"
## [1] 14511
## [1] "removing: surg_bun_t_hair"
## [1] 14511
## [1] "removing: surg_bun_t_hallux"
## [1] 14511
## [1] "removing: surg_bun_t_halo"
## [1] 14511
## [1] "removing: surg_bun_t_hand"
## [1] 14511
## [1] "removing: surg_bun_t_harvest"
## [1] 14511
## [1] "removing: surg_bun_t_head"
## [1] 14511
## [1] "removing: surg_bun_t_heart"
## [1] 14511
## [1] "removing: surg_bun_t_hematoma"
## [1] 14511
## [1] "removing: surg_bun_t_hemorrhoid"
## [1] 14511
## [1] "removing: surg_bun_t_hemorrhoidopexy"
## [1] 14511
## [1] "removing: surg_bun_t_hernia"
## [1] 14511
## [1] "removing: surg_bun_t_hip"
## [1] 14511
## [1] "removing: surg_bun_t_hole"
## [1] 14511
## [1] "removing: surg_bun_t_hormone"
## [1] 14511
## [1] "removing: surg_bun_t_humer"
## [1] 14511
## [1] "removing: surg_bun_t_hydrocele"
## [1] 14511
## [1] "removing: surg_bun_t_hyst"
## [1] 14511
## [1] "removing: surg_bun_t_hysterectomy"
## [1] 14511
## [1] "removing: surg_bun_t_iliopsoas"
## [1] 14511
## [1] "removing: surg_bun_t_illiac"
## [1] 14511
## [1] "removing: surg_bun_t_imag"
## [1] 14511
## [1] "removing: surg_bun_t_implant"
## [1] 14511
## [1] "removing: surg_bun_t_incision"
## [1] 14511
## [1] "removing: surg_bun_t_infect"
## [1] 14511
## [1] "removing: surg_bun_t_injection"
## [1] 14511
## [1] "removing: surg_bun_t_inner"
## [1] 14511
## [1] "removing: surg_bun_t_insert"
## [1] 14511
## [1] "removing: surg_bun_t_interlaminar"
## [1] 14511
## [1] "removing: surg_bun_t_internal"
## [1] 14511
## [1] "removing: surg_bun_t_intestine"
## [1] 14511
## [1] "removing: surg_bun_t_intracorporeal"
## [1] 14511
## [1] "removing: surg_bun_t_intracranial"
## [1] 14511
## [1] "removing: surg_bun_t_intranasal"
## [1] 14511
## [1] "removing: surg_bun_t_inverted"
## [1] 14511
## [1] "removing: surg_bun_t_iris"
## [1] 14511
## [1] "removing: surg_bun_t_jaw"
## [1] 14511
## [1] "removing: surg_bun_t_joint"
## [1] 14511
## [1] "removing: surg_bun_t_kidney"
## [1] 14511
## [1] "removing: surg_bun_t_knee"
## [1] 14511
## [1] "removing: surg_bun_t_kneecap"
## [1] 14511
## [1] "removing: surg_bun_t_knuckle"
## [1] 14511
## [1] "removing: surg_bun_t_kyphectomy"
## [1] 14511
## [1] "removing: surg_bun_t_laceration"
## [1] 14511
## [1] "removing: surg_bun_t_lamina"
## [1] 14511
## [1] "removing: surg_bun_t_laminotomy"
## [1] 14511
## [1] "removing: surg_bun_t_lap"
## [1] 14511
## [1] "removing: surg_bun_t_laparoscop"
## [1] 14511
## [1] "removing: surg_bun_t_large"
## [1] 14511
## [1] "removing: surg_bun_t_laryngoscopy"
## [1] 14511
## [1] "removing: surg_bun_t_larynx"
## [1] 14511
## [1] "removing: surg_bun_t_laser"
## [1] 14511
## [1] "removing: surg_bun_t_lavage"
## [1] 14511
## [1] "removing: surg_bun_t_lefort"
## [1] 14511
## [1] "removing: surg_bun_t_leg"
## [1] 14511
## [1] "removing: surg_bun_t_lengthen"
## [1] 14511
## [1] "removing: surg_bun_t_lesion"
## [1] 14511
## [1] "removing: surg_bun_t_ligament"
## [1] 14511
## [1] "removing: surg_bun_t_ligation"
## [1] 14511
## [1] "removing: surg_bun_t_lining"
## [1] 14511
## [1] "removing: surg_bun_t_lip"
## [1] 14511
## [1] "removing: surg_bun_t_lipectomy"
## [1] 14511
## [1] "removing: surg_bun_t_liver"
## [1] 14511
## [1] "removing: surg_bun_t_lobectomy"
## [1] 14511
## [1] "removing: surg_bun_t_long"
## [1] 14511
## [1] "removing: surg_bun_t_lower"
## [1] 14511
## [1] "removing: surg_bun_t_lumbar"
## [1] 14511
## [1] "removing: surg_bun_t_lung"
## [1] 14511
## [1] "removing: surg_bun_t_lymph"
## [1] 14511
## [1] "removing: surg_bun_t_major"
## [1] 14511
## [1] "removing: surg_bun_t_mandible"
## [1] 14511
## [1] "removing: surg_bun_t_marrow"
## [1] 14511
## [1] "removing: surg_bun_t_mast"
## [1] 14511
## [1] "removing: surg_bun_t_mastectomy"
## [1] 14511
## [1] "removing: surg_bun_t_mastoid"
## [1] 14511
## [1] "removing: surg_bun_t_material"
## [1] 14511
## [1] "removing: surg_bun_t_maxilla"
## [1] 14511
## [1] "removing: surg_bun_t_mcp"
## [1] 14511
## [1] "removing: surg_bun_t_mesh"
## [1] 14511
## [1] "removing: surg_bun_t_metacarpal"
## [1] 14511
## [1] "removing: surg_bun_t_microvasc"
## [1] 14511
## [1] "removing: surg_bun_t_middle"
## [1] 14511
## [1] "removing: surg_bun_t_midfoot"
## [1] 14511
## [1] "removing: surg_bun_t_mitral"
## [1] 14511
## [1] "removing: surg_bun_t_mohs"
## [1] 14511
## [1] "removing: surg_bun_t_mouth"
## [1] 14511
## [1] "removing: surg_bun_t_musc"
## [1] 14511
## [1] "removing: surg_bun_t_myelography"
## [1] 14511
## [1] "removing: surg_bun_t_myomectomy"
## [1] 14511
## [1] "removing: surg_bun_t_nail"
## [1] 14511
## [1] "removing: surg_bun_t_nasal"
## [1] 14511
## [1] "removing: surg_bun_t_nasolacrimal"
## [1] 14511
## [1] "removing: surg_bun_t_neck"
## [1] 14511
## [1] "removing: surg_bun_t_needle"
## [1] 14511
## [1] "removing: surg_bun_t_nephrectomy"
## [1] 14511
## [1] "removing: surg_bun_t_nerve"
## [1] 14511
## [1] "removing: surg_bun_t_neuroelectrode"
## [1] 14511
## [1] "removing: surg_bun_t_neuroendoscopy"
## [1] 14511
## [1] "removing: surg_bun_t_nipple"
## [1] 14511
## [1] "removing: surg_bun_t_njx"
## [1] 14511
## [1] "removing: surg_bun_t_node"
## [1] 14511
## [1] "removing: surg_bun_t_nodule"
## [1] 14511
## [1] "removing: surg_bun_t_nonfacial"
## [1] 14511
## [1] "removing: surg_bun_t_nose"
## [1] 14511
## [1] "removing: surg_bun_t_nosebleed"
## [1] 14511
## [1] "removing: surg_bun_t_nuero"
## [1] 14511
## [1] "removing: surg_bun_t_obstetrical"
## [1] 14511
## [1] "removing: surg_bun_t_open"
## [1] 14511
## [1] "removing: surg_bun_t_opening"
## [1] 14511
## [1] "removing: surg_bun_t_oral"
## [1] 14511
## [1] "removing: surg_bun_t_orbitocranial"
## [1] 14511
## [1] "removing: surg_bun_t_orchiopexy"
## [1] 14511
## [1] "removing: surg_bun_t_other"
## [1] 14511
## [1] "removing: surg_bun_t_ovarian"
## [1] 14511
## [1] "removing: surg_bun_t_ovary"
## [1] 14511
## [1] "removing: surg_bun_t_pacemaker"
## [1] 14511
## [1] "removing: surg_bun_t_pad"
## [1] 14511
## [1] "removing: surg_bun_t_palate"
## [1] 14511
## [1] "removing: surg_bun_t_palm"
## [1] 14511
## [1] "removing: surg_bun_t_palsy"
## [1] 14511
## [1] "removing: surg_bun_t_pancreas"
## [1] 14511
## [1] "removing: surg_bun_t_pancreatectomy"
## [1] 14511
## [1] "removing: surg_bun_t_paravert"
## [1] 14511
## [1] "removing: surg_bun_t_part"
## [1] 14511
## [1] "removing: surg_bun_t_partial"
## [1] 14511
## [1] "removing: surg_bun_t_pedcle"
## [1] 14511
## [1] "removing: surg_bun_t_pedicle"
## [1] 14511
## [1] "removing: surg_bun_t_peel"
## [1] 14511
## [1] "removing: surg_bun_t_pelvic"
## [1] 14511
## [1] "removing: surg_bun_t_pelvis"
## [1] 14511
## [1] "removing: surg_bun_t_penile"
## [1] 14511
## [1] "removing: surg_bun_t_penis"
## [1] 14511
## [1] "removing: surg_bun_t_percut"
## [1] 14511
## [1] "removing: surg_bun_t_percutaneous"
## [1] 14511
## [1] "removing: surg_bun_t_perineum"
## [1] 14511
## [1] "removing: surg_bun_t_pernineum"
## [1] 14511
## [1] "removing: surg_bun_t_pharynx"
## [1] 14511
## [1] "removing: surg_bun_t_pierce"
## [1] 14511
## [1] "removing: surg_bun_t_pilonidal"
## [1] 14511
## [1] "removing: surg_bun_t_place"
## [1] 14511
## [1] "removing: surg_bun_t_plastic"
## [1] 14511
## [1] "removing: surg_bun_t_plate"
## [1] 14511
## [1] "removing: surg_bun_t_pneumonectomy"
## [1] 14511
## [1] "removing: surg_bun_t_polyp"
## [1] 14511
## [1] "removing: surg_bun_t_pouch"
## [1] 14511
## [1] "removing: surg_bun_t_pregnancy"
## [1] 14511
## [1] "removing: surg_bun_t_prep"
## [1] 14511
## [1] "removing: surg_bun_t_prepare"
## [1] 14511
## [1] "removing: surg_bun_t_pressure"
## [1] 14511
## [1] "removing: surg_bun_t_process"
## [1] 14511
## [1] "removing: surg_bun_t_proctosigmoidoscopy"
## [1] 14511
## [1] "removing: surg_bun_t_prolapse"
## [1] 14511
## [1] "removing: surg_bun_t_prostat"
## [1] 14511
## [1] "removing: surg_bun_t_prostate"
## [1] 14511
## [1] "removing: surg_bun_t_prosthesis"
## [1] 14511
## [1] "removing: surg_bun_t_prosthetic"
## [1] 14511
## [1] "removing: surg_bun_t_pulmonary"
## [1] 14511
## [1] "removing: surg_bun_t_punch"
## [1] 14511
## [1] "removing: surg_bun_t_puncture"
## [1] 14511
## [1] "removing: surg_bun_t_pyeloplasty"
## [1] 14511
## [1] "removing: surg_bun_t_radius"
## [1] 14511
## [1] "removing: surg_bun_t_realignment"
## [1] 14511
## [1] "removing: surg_bun_t_rechannel"
## [1] 14511
## [1] "removing: surg_bun_t_reconstruct"
## [1] 14511
## [1] "removing: surg_bun_t_reconstruction"
## [1] 14511
## [1] "removing: surg_bun_t_rectal"
## [1] 14511
## [1] "removing: surg_bun_t_rectum"
## [1] 14511
## [1] "removing: surg_bun_t_reduction"
## [1] 14511
## [1] "removing: surg_bun_t_reinforce"
## [1] 14511
## [1] "removing: surg_bun_t_release"
## [1] 14511
## [1] "removing: surg_bun_t_remov"
## [1] 14511
## [1] "removing: surg_bun_t_removal"
## [1] 14511
## [1] "removing: surg_bun_t_remove"
## [1] 14511
## [1] "removing: surg_bun_t_renal"
## [1] 14511
## [1] "removing: surg_bun_t_repair"
## [1] 14511
## [1] "removing: surg_bun_t_replantation"
## [1] 14511
## [1] "removing: surg_bun_t_resect"
## [1] 14511
## [1] "removing: surg_bun_t_reset"
## [1] 14511
## [1] "removing: surg_bun_t_retina"
## [1] 14511
## [1] "removing: surg_bun_t_retinopathy"
## [1] 14511
## [1] "removing: surg_bun_t_revise"
## [1] 14511
## [1] "removing: surg_bun_t_revision"
## [1] 14511
## [1] "removing: surg_bun_t_rib"
## [1] 14511
## [1] "removing: surg_bun_t_ridge"
## [1] 14511
## [1] "removing: surg_bun_t_ring"
## [1] 14511
## [1] "removing: surg_bun_t_roof"
## [1] 14511
## [1] "removing: surg_bun_t_rotator"
## [1] 14511
## [1] "removing: surg_bun_t_routine"
## [1] 14511
## [1] "removing: surg_bun_t_sacrum"
## [1] 14511
## [1] "removing: surg_bun_t_salivary"
## [1] 14511
## [1] "removing: surg_bun_t_scapula"
## [1] 14511
## [1] "removing: surg_bun_t_scar"
## [1] 14511
## [1] "removing: surg_bun_t_scope"
## [1] 14511
## [1] "removing: surg_bun_t_scrotum"
## [1] 14511
## [1] "removing: surg_bun_t_segment"
## [1] 14511
## [1] "removing: surg_bun_t_segmental"
## [1] 14511
## [1] "removing: surg_bun_t_segmentectomy"
## [1] 14511
## [1] "removing: surg_bun_t_septum"
## [1] 14511
## [1] "removing: surg_bun_t_sex"
## [1] 14511
## [1] "removing: surg_bun_t_shave"
## [1] 14511
## [1] "removing: surg_bun_t_sheath"
## [1] 14511
## [1] "removing: surg_bun_t_shorten"
## [1] 14511
## [1] "removing: surg_bun_t_shoulder"
## [1] 14511
## [1] "removing: surg_bun_t_shunt"
## [1] 14511
## [1] "removing: surg_bun_t_sigmoidoscopy"
## [1] 14511
## [1] "removing: surg_bun_t_simple"
## [1] 14511
## [1] "removing: surg_bun_t_sinus"
## [1] 14511
## [1] "removing: surg_bun_t_skeletal"
## [1] 14511
## [1] "removing: surg_bun_t_skin"
## [1] 14511
## [1] "removing: surg_bun_t_skull"
## [1] 14511
## [1] "removing: surg_bun_t_sleeve"
## [1] 14511
## [1] "removing: surg_bun_t_slipped"
## [1] 14511
## [1] "removing: surg_bun_t_small"
## [1] 14511
## [1] "removing: surg_bun_t_socket"
## [1] 14511
## [1] "removing: surg_bun_t_soft"
## [1] 14511
## [1] "removing: surg_bun_t_sore"
## [1] 14511
## [1] "removing: surg_bun_t_sperm"
## [1] 14511
## [1] "removing: surg_bun_t_sphenoid"
## [1] 14511
## [1] "removing: surg_bun_t_sphincter"
## [1] 14511
## [1] "removing: surg_bun_t_spine"
## [1] 14511
## [1] "removing: surg_bun_t_spleen"
## [1] 14511
## [1] "removing: surg_bun_t_splint"
## [1] 14511
## [1] "removing: surg_bun_t_split"
## [1] 14511
## [1] "removing: surg_bun_t_stem"
## [1] 14511
## [1] "removing: surg_bun_t_stenosis"
## [1] 14511
## [1] "removing: surg_bun_t_stent"
## [1] 14511
## [1] "removing: surg_bun_t_sternal"
## [1] 14511
## [1] "removing: surg_bun_t_sternum"
## [1] 14511
## [1] "removing: surg_bun_t_stimulation"
## [1] 14511
## [1] "removing: surg_bun_t_stomach"
## [1] 14511
## [1] "removing: surg_bun_t_stone"
## [1] 14511
## [1] "removing: surg_bun_t_stop"
## [1] 14511
## [1] "removing: surg_bun_t_strapping"
## [1] 14511
## [1] "removing: surg_bun_t_stricture"
## [1] 14511
## [1] "removing: surg_bun_t_styloid"
## [1] 14511
## [1] "removing: surg_bun_t_sub"
## [1] 14511
## [1] "removing: surg_bun_t_suction"
## [1] 14511
## [1] "removing: surg_bun_t_superficial"
## [1] 14511
## [1] "removing: surg_bun_t_suspension"
## [1] 14511
## [1] "removing: surg_bun_t_sutures"
## [1] 14511
## [1] "removing: surg_bun_t_sweat"
## [1] 14511
## [1] "removing: surg_bun_t_tags"
## [1] 14511
## [1] "removing: surg_bun_t_tail"
## [1] 14511
## [1] "removing: surg_bun_t_tear"
## [1] 14511
## [1] "removing: surg_bun_t_temporal"
## [1] 14511
## [1] "removing: surg_bun_t_tendon"
## [1] 14511
## [1] "removing: surg_bun_t_testis"
## [1] 14511
## [1] "removing: surg_bun_t_therapy"
## [1] 14511
## [1] "removing: surg_bun_t_thigh"
## [1] 14511
## [1] "removing: surg_bun_t_thoracoscopy"
## [1] 14511
## [1] "removing: surg_bun_t_thoracotomy"
## [1] 14511
## [1] "removing: surg_bun_t_thorax"
## [1] 14511
## [1] "removing: surg_bun_t_throat"
## [1] 14511
## [1] "removing: surg_bun_t_thrombin"
## [1] 14511
## [1] "removing: surg_bun_t_thrombo"
## [1] 14511
## [1] "removing: surg_bun_t_thumb"
## [1] 14511
## [1] "removing: surg_bun_t_thymus"
## [1] 14511
## [1] "removing: surg_bun_t_thyroid"
## [1] 14511
## [1] "removing: surg_bun_t_tip"
## [1] 14511
## [1] "removing: surg_bun_t_tiss"
## [1] 14511
## [1] "removing: surg_bun_t_tkr"
## [1] 14511
## [1] "removing: surg_bun_t_toe"
## [1] 14511
## [1] "removing: surg_bun_t_tongue"
## [1] 14511
## [1] "removing: surg_bun_t_tonsil"
## [1] 14511
## [1] "removing: surg_bun_t_torsion"
## [1] 14511
## [1] "removing: surg_bun_t_total"
## [1] 14511
## [1] "removing: surg_bun_t_tract"
## [1] 14511
## [1] "removing: surg_bun_t_transcath"
## [1] 14511
## [1] "removing: surg_bun_t_transfer"
## [1] 14511
## [1] "removing: surg_bun_t_transform"
## [1] 14511
## [1] "removing: surg_bun_t_transplant"
## [1] 14511
## [1] "removing: surg_bun_t_treat"
## [1] 14511
## [1] "removing: surg_bun_t_triceps"
## [1] 14511
## [1] "removing: surg_bun_t_tricuspid"
## [1] 14511
## [1] "removing: surg_bun_t_trigger"
## [1] 14511
## [1] "removing: surg_bun_t_trim"
## [1] 14511
## [1] "removing: surg_bun_t_tube"
## [1] 14511
## [1] "removing: surg_bun_t_tum"
## [1] 14511
## [1] "removing: surg_bun_t_tumor"
## [1] 14511
## [1] "removing: surg_bun_t_tunneled"
## [1] 14511
## [1] "removing: surg_bun_t_ulcer"
## [1] 14511
## [1] "removing: surg_bun_t_ulna"
## [1] 14511
## [1] "removing: surg_bun_t_umbil"
## [1] 14511
## [1] "removing: surg_bun_t_unit"
## [1] 14511
## [1] "removing: surg_bun_t_unstable"
## [1] 14511
## [1] "removing: surg_bun_t_upper"
## [1] 14511
## [1] "removing: surg_bun_t_ureter"
## [1] 14511
## [1] "removing: surg_bun_t_urethra"
## [1] 14511
## [1] "removing: surg_bun_t_urethrovaginal"
## [1] 14511
## [1] "removing: surg_bun_t_uterus"
## [1] 14511
## [1] "removing: surg_bun_t_uvula"
## [1] 14511
## [1] "removing: surg_bun_t_vag"
## [1] 14511
## [1] "removing: surg_bun_t_vagotomy"
## [1] 14511
## [1] "removing: surg_bun_t_valgus"
## [1] 14511
## [1] "removing: surg_bun_t_valve"
## [1] 14511
## [1] "removing: surg_bun_t_vascular"
## [1] 14511
## [1] "removing: surg_bun_t_vein"
## [1] 14511
## [1] "removing: surg_bun_t_venipuncture"
## [1] 14511
## [1] "removing: surg_bun_t_ventricular"
## [1] 14511
## [1] "removing: surg_bun_t_vertebra"
## [1] 14511
## [1] "removing: surg_bun_t_vessel"
## [1] 14511
## [1] "removing: surg_bun_t_vulva"
## [1] 14511
## [1] "removing: surg_bun_t_wall"
## [1] 14511
## [1] "removing: surg_bun_t_wax"
## [1] 14511
## [1] "removing: surg_bun_t_web"
## [1] 14511
## [1] "removing: surg_bun_t_wedge"
## [1] 14511
## [1] "removing: surg_bun_t_window"
## [1] 14511
## [1] "removing: surg_bun_t_windpipe"
## [1] 14511
## [1] "removing: surg_bun_t_wound"
## [1] 14511
## [1] "removing: surg_bun_t_wrinkle"
## [1] 14511
## [1] "removing: surg_bun_t_wrist"
## [1] 14511
## [1] "removing: surg_bun_t_x-ray"
## [1] 14511
## [1] "removing: surg_bun_t_xenograft"
## [1] 14511
## [1] "removing: surg_bun_t_xenogrft"
## [1] 14511
## [1] "removing: surg_bun_t_xgraft"
## [1] 14511
## [1] "removing: medi_bun_t_add-on"
## [1] 14504
## [1] "removing: medi_bun_t_analy"
## [1] 14504
## [1] "removing: medi_bun_t_applicat"
## [1] 14504
## [1] "removing: medi_bun_t_apply"
## [1] 14504
## [1] "removing: medi_bun_t_asses"
## [1] 14499
## [1] "removing: medi_bun_t_benzathine"
## [1] 14499
## [1] "removing: medi_bun_t_betamethasone"
## [1] 14492
## [1] "removing: medi_bun_t_boot"
## [1] 14482
## [1] "removing: medi_bun_t_candida"
## [1] 14482
## [1] "removing: medi_bun_t_cast"
## [1] 14482
## [1] "removing: medi_bun_t_cathet"
## [1] 14482
## [1] "removing: medi_bun_t_catheterisation"
## [1] 14482
## [1] "removing: medi_bun_t_chiropract"
## [1] 14404
## [1] "removing: medi_bun_t_choline"
## [1] 14404
## [1] "removing: medi_bun_t_clinic"
## [1] 14395
## [1] "removing: medi_bun_t_clostridium"
## [1] 14395
## [1] "removing: medi_bun_t_cochlear"
## [1] 14394
## [1] "removing: medi_bun_t_cold"
## [1] 14382
## [1] "removing: medi_bun_t_consult"
## [1] 14382
## [1] "removing: medi_bun_t_consultation"
## [1] 14382
## [1] "removing: medi_bun_t_crutch"
## [1] 14382
## [1] "removing: medi_bun_t_cyst"
## [1] 14382
## [1] "removing: medi_bun_t_depression"
## [1] 14349
## [1] "removing: medi_bun_t_derma"
## [1] 14349
## [1] "removing: medi_bun_t_dermal"
## [1] 14349
## [1] "removing: medi_bun_t_device"
## [1] 14317
## [1] "removing: medi_bun_t_dialys"
## [1] 14311
## [1] "removing: medi_bun_t_discharg"
## [1] 14311
## [1] "removing: medi_bun_t_drain"
## [1] 14311
## [1] "removing: medi_bun_t_draw"
## [1] 14311
## [1] "removing: medi_bun_t_dtap"
## [1] 14310
## [1] "removing: medi_bun_t_dtap-ipv"
## [1] 14310
## [1] "removing: medi_bun_t_emotional"
## [1] 14252
## [1] "removing: medi_bun_t_endocrine"
## [1] 14252
## [1] "removing: medi_bun_t_epstein-barr"
## [1] 14252
## [1] "removing: medi_bun_t_equipment"
## [1] 14252
## [1] "removing: medi_bun_t_establish"
## [1] 14249
## [1] "removing: medi_bun_t_estradiol"
## [1] 14249
## [1] "removing: medi_bun_t_evaluat"
## [1] 14241
## [1] "removing: medi_bun_t_flu"
## [1] 14231
## [1] "removing: medi_bun_t_follow-up"
## [1] 14231
## [1] "removing: medi_bun_t_gastroenterology"
## [1] 14231
## [1] "removing: medi_bun_t_gonorrhoeae"
## [1] 14231
## [1] "removing: medi_bun_t_haloperidol"
## [1] 14231
## [1] "removing: medi_bun_t_hearing"
## [1] 14229
## [1] "removing: medi_bun_t_hemorrhoid"
## [1] 14229
## [1] "removing: medi_bun_t_hepatitis"
## [1] 14229
## [1] "removing: medi_bun_t_hiv - 2"
## [1] 14229
## [1] "removing: medi_bun_t_hiv - 3"
## [1] 14229
## [1] "removing: medi_bun_t_home"
## [1] 14229
## [1] "removing: medi_bun_t_hormone"
## [1] 14229
## [1] "removing: medi_bun_t_hpv"
## [1] 14223
## [1] "removing: medi_bun_t_hydrate"
## [1] 14223
## [1] "removing: medi_bun_t_hydration"
## [1] 14222
## [1] "removing: medi_bun_t_iiv"
## [1] 14159
## [1] "removing: medi_bun_t_immune"
## [1] 14159
## [1] "removing: medi_bun_t_immunoassay"
## [1] 14158
## [1] "removing: medi_bun_t_immunohisto"
## [1] 14158
## [1] "removing: medi_bun_t_immunotherapy"
## [1] 14130
## [1] "removing: medi_bun_t_influenza"
## [1] 14130
## [1] "removing: medi_bun_t_insulin"
## [1] 14130
## [1] "removing: medi_bun_t_intrauterine"
## [1] 14130
## [1] "removing: medi_bun_t_iodine"
## [1] 14130
## [1] "removing: medi_bun_t_laiv4"
## [1] 14130
## [1] "removing: medi_bun_t_medroxyprogesterone"
## [1] 14129
## [1] "removing: medi_bun_t_mental"
## [1] 14129
## [1] "removing: medi_bun_t_metabolic"
## [1] 14129
## [1] "removing: medi_bun_t_methylprednisolone"
## [1] 14114
## [1] "removing: medi_bun_t_mgmt"
## [1] 14114
## [1] "removing: medi_bun_t_mmr"
## [1] 14113
## [1] "removing: medi_bun_t_monitor"
## [1] 14112
## [1] "removing: medi_bun_t_muscle"
## [1] 14111
## [1] "removing: medi_bun_t_needle"
## [1] 14111
## [1] "removing: medi_bun_t_non-invasive"
## [1] 14111
## [1] "removing: medi_bun_t_non-stress"
## [1] 14111
## [1] "removing: medi_bun_t_normal"
## [1] 14108
## [1] "removing: medi_bun_t_nursing"
## [1] 14108
## [1] "removing: medi_bun_t_nutrition"
## [1] 14103
## [1] "removing: medi_bun_t_observ"
## [1] 14103
## [1] "removing: medi_bun_t_oral"
## [1] 14082
## [1] "removing: medi_bun_t_outpatient"
## [1] 14082
## [1] "removing: medi_bun_t_outpt"
## [1] 14082
## [1] "removing: medi_bun_t_pap"
## [1] 14081
## [1] "removing: medi_bun_t_physical"
## [1] 14078
## [1] "removing: medi_bun_t_portable"
## [1] 14078
## [1] "removing: medi_bun_t_prednisolone"
## [1] 14078
## [1] "removing: medi_bun_t_pressure"
## [1] 14078
## [1] "removing: medi_bun_t_progesterone"
## [1] 14078
## [1] "removing: medi_bun_t_psych"
## [1] 14071
## [1] "removing: medi_bun_t_psychiat"
## [1] 14071
## [1] "removing: medi_bun_t_psycho"
## [1] 14071
## [1] "removing: medi_bun_t_pulmonary"
## [1] 14070
## [1] "removing: medi_bun_t_puncture"
## [1] 14042
## [1] "removing: medi_bun_t_rabies"
## [1] 14042
## [1] "removing: medi_bun_t_radiation"
## [1] 14042
## [1] "removing: medi_bun_t_radio"
## [1] 14042
## [1] "removing: medi_bun_t_reeducation"
## [1] 13972
## [1] "removing: medi_bun_t_reeval"
## [1] 13972
## [1] "removing: medi_bun_t_rehab"
## [1] 13972
## [1] "removing: medi_bun_t_remove"
## [1] 13972
## [1] "removing: medi_bun_t_rheumatoid"
## [1] 13972
## [1] "removing: medi_bun_t_riv4"
## [1] 13962
## [1] "removing: medi_bun_t_routine"
## [1] 13962
## [1] "removing: medi_bun_t_rubella"
## [1] 13962
## [1] "removing: medi_bun_t_saline"
## [1] 13962
## [1] "removing: medi_bun_t_sciatic"
## [1] 13962
## [1] "removing: medi_bun_t_serum"
## [1] 13962
## [1] "removing: medi_bun_t_services"
## [1] 13962
## [1] "removing: medi_bun_t_shave"
## [1] 13962
## [1] "removing: medi_bun_t_simple"
## [1] 13962
## [1] "removing: medi_bun_t_sleep"
## [1] 13961
## [1] "removing: medi_bun_t_smear"
## [1] 13961
## [1] "removing: medi_bun_t_sodium"
## [1] 13950
## [1] "removing: medi_bun_t_soft"
## [1] 13950
## [1] "removing: medi_bun_t_solution"
## [1] 13950
## [1] "removing: medi_bun_t_sound"
## [1] 13924
## [1] "removing: medi_bun_t_speech"
## [1] 13924
## [1] "removing: medi_bun_t_splint"
## [1] 13924
## [1] "removing: medi_bun_t_splt"
## [1] 13924
## [1] "removing: medi_bun_t_stent"
## [1] 13924
## [1] "removing: medi_bun_t_sterile"
## [1] 13924
## [1] "removing: medi_bun_t_stocking"
## [1] 13924
## [1] "removing: medi_bun_t_stone"
## [1] 13924
## [1] "removing: medi_bun_t_stool"
## [1] 13924
## [1] "removing: medi_bun_t_strep"
## [1] 13924
## [1] "removing: medi_bun_t_stress"
## [1] 13922
## [1] "removing: medi_bun_t_stud"
## [1] 13891
## [1] "removing: medi_bun_t_subseq"
## [1] 13889
## [1] "removing: medi_bun_t_substitute"
## [1] 13889
## [1] "removing: medi_bun_t_sulfate"
## [1] 13838
## [1] "removing: medi_bun_t_supplies"
## [1] 13838
## [1] "removing: medi_bun_t_suppls"
## [1] 13838
## [1] "removing: medi_bun_t_support"
## [1] 13838
## [1] "removing: medi_bun_t_susceptible"
## [1] 13838
## [1] "removing: medi_bun_t_swallow"
## [1] 13838
## [1] "removing: medi_bun_t_synth"
## [1] 13838
## [1] "removing: medi_bun_t_syphilis"
## [1] 13838
## [1] "removing: medi_bun_t_syringe"
## [1] 13838
## [1] "removing: medi_bun_t_system"
## [1] 13838
## [1] "removing: medi_bun_t_tdap"
## [1] 13790
## [1] "removing: medi_bun_t_test"
## [1] 13776
## [1] "removing: medi_bun_t_testing"
## [1] 13776
## [1] "removing: medi_bun_t_testosterone"
## [1] 13776
## [1] "removing: medi_bun_t_tests"
## [1] 13776
## [1] "removing: medi_bun_t_tetanus"
## [1] 13776
## [1] "removing: medi_bun_t_thyroxine"
## [1] 13776
## [1] "removing: medi_bun_t_tobacco"
## [1] 13776
## [1] "removing: medi_bun_t_toe"
## [1] 13776
## [1] "removing: medi_bun_t_tolerance"
## [1] 13776
## [1] "removing: medi_bun_t_topical"
## [1] 13776
## [1] "removing: medi_bun_t_toxin"
## [1] 13775
## [1] "removing: medi_bun_t_trach"
## [1] 13775
## [1] "removing: medi_bun_t_tracing"
## [1] 13735
## [1] "removing: medi_bun_t_traction"
## [1] 13726
## [1] "removing: medi_bun_t_training"
## [1] 13721
## [1] "removing: medi_bun_t_transfusion"
## [1] 13721
## [1] "removing: medi_bun_t_treat"
## [1] 13719
## [1] "removing: medi_bun_t_typhoid"
## [1] 13719
## [1] "removing: medi_bun_t_ultrasound"
## [1] 13719
## [1] "removing: medi_bun_t_urinalysis"
## [1] 13719
## [1] "removing: medi_bun_t_urinary"
## [1] 13719
## [1] "removing: medi_bun_t_urine"
## [1] 13719
## [1] "removing: medi_bun_t_uterine"
## [1] 13719
## [1] "removing: medi_bun_t_valve"
## [1] 13719
## [1] "removing: medi_bun_t_vein"
## [1] 13719
## [1] "removing: medi_bun_t_venipuncture"
## [1] 13719
## [1] "removing: medi_bun_t_virus"
## [1] 13719
## [1] "removing: medi_bun_t_visit"
## [1] 13718
## [1] "removing: medi_bun_t_visual"
## [1] 13718
## [1] "removing: medi_bun_t_vitamin"
## [1] 13714
## [1] "removing: medi_bun_t_wbc"
## [1] 13714
## [1] "removing: medi_bun_t_wheelchair"
## [1] 13714
## [1] "removing: medi_bun_t_wheezing"
## [1] 13714
## [1] "removing: medi_bun_t_whirlpool"
## [1] 13713
## [1] "removing: medi_bun_t_wire"
## [1] 13713
## [1] "removing: medi_bun_t_with"
## [1] 13697
## [1] "removing: medi_bun_t_without"
## [1] 13697
## [1] "removing: medi_bun_t_wkend"
## [1] 13697
## [1] "removing: medi_bun_t_wound"
## [1] 13670
## [1] "removing: medi_bun_t_menb"
## [1] 13670
## [1] "removing: medi_bun_t_hzv"
## [1] 13667
## [1] "removing: medi_bun_t_xgraft"
## [1] 13667
## [1] "removing: medi_bun_t_hepa"
## [1] 13663
## [1] "removing: medi_bun_t_hepb"
## [1] 13660
## [1] "removing: medi_bun_t_ppsv23"
## [1] 13659
## [1] "removing: medi_bun_t_pcv13"
## [1] 13658
## [1] "removing: medi_bun_t_eye_exam"
## [1] 13630
## [1] "removing: medi_bun_t_var_vaccine_live_subq"
## [1] 13630
## [1] "removing: medi_bun_t_menacwy"
## [1] 13627
## [1] "removing: radi_bun_t_abdom"
## [1] 13615
## [1] "removing: radi_bun_t_adrenal"
## [1] 13615
## [1] "removing: radi_bun_t_angiography"
## [1] 13608
## [1] "removing: radi_bun_t_ankle"
## [1] 13530
## [1] "removing: radi_bun_t_aorta"
## [1] 13530
## [1] "removing: radi_bun_t_area"
## [1] 13530
## [1] "removing: radi_bun_t_arm"
## [1] 13467
## [1] "removing: radi_bun_t_artery"
## [1] 13467
## [1] "removing: radi_bun_t_bile"
## [1] 13467
## [1] "removing: radi_bun_t_bladder"
## [1] 13467
## [1] "removing: radi_bun_t_blockage"
## [1] 13467
## [1] "removing: radi_bun_t_body"
## [1] 13466
## [1] "removing: radi_bun_t_breast"
## [1] 13447
## [1] "removing: radi_bun_t_cardiac"
## [1] 13447
## [1] "removing: radi_bun_t_cast"
## [1] 13447
## [1] "removing: radi_bun_t_complex"
## [1] 13447
## [1] "removing: radi_bun_t_contrast"
## [1] 13425
## [1] "removing: radi_bun_t_cranial"
## [1] 13425
## [1] "removing: radi_bun_t_ct_scan"
## [1] 13425
## [1] "removing: radi_bun_t_delivery"
## [1] 13424
## [1] "removing: radi_bun_t_diagnostic"
## [1] 13424
## [1] "removing: radi_bun_t_dislocation"
## [1] 13424
## [1] "removing: radi_bun_t_duct"
## [1] 13424
## [1] "removing: radi_bun_t_echo"
## [1] 13420
## [1] "removing: radi_bun_t_epidurograpy"
## [1] 13420
## [1] "removing: radi_bun_t_evaluation"
## [1] 13420
## [1] "removing: radi_bun_t_eye"
## [1] 13420
## [1] "removing: radi_bun_t_femur"
## [1] 13405
## [1] "removing: radi_bun_t_fetal"
## [1] 13405
## [1] "removing: radi_bun_t_finger"
## [1] 13366
## [1] "removing: radi_bun_t_fistula"
## [1] 13366
## [1] "removing: radi_bun_t_fluoroscopy"
## [1] 13366
## [1] "removing: radi_bun_t_fmri"
## [1] 13366
## [1] "removing: radi_bun_t_foot"
## [1] 13298
## [1] "removing: radi_bun_t_forearm"
## [1] 13298
## [1] "removing: radi_bun_t_fracture"
## [1] 13298
## [1] "removing: radi_bun_t_gadobutrol"
## [1] 13298
## [1] "removing: radi_bun_t_gastric"
## [1] 13298
## [1] "removing: radi_bun_t_general"
## [1] 13298
## [1] "removing: radi_bun_t_gential"
## [1] 13298
## [1] "removing: radi_bun_t_gestation"
## [1] 13298
## [1] "removing: radi_bun_t_gi_tract"
## [1] 13298
## [1] "removing: radi_bun_t_glands"
## [1] 13298
## [1] "removing: radi_bun_t_guide"
## [1] 13298
## [1] "removing: radi_bun_t_heart"
## [1] 13298
## [1] "removing: radi_bun_t_heel"
## [1] 13295
## [1] "removing: radi_bun_t_hyperthermia"
## [1] 13295
## [1] "removing: radi_bun_t_imag"
## [1] 13295
## [1] "removing: radi_bun_t_image"
## [1] 13295
## [1] "removing: radi_bun_t_imaging"
## [1] 13295
## [1] "removing: radi_bun_t_infant"
## [1] 13294
## [1] "removing: radi_bun_t_interpret"
## [1] 13294
## [1] "removing: radi_bun_t_jaw"
## [1] 13291
## [1] "removing: radi_bun_t_kidney"
## [1] 13291
## [1] "removing: radi_bun_t_leg"
## [1] 13281
## [1] "removing: radi_bun_t_lesion"
## [1] 13281
## [1] "removing: radi_bun_t_liver"
## [1] 13281
## [1] "removing: radi_bun_t_lower"
## [1] 13278
## [1] "removing: radi_bun_t_lumbar"
## [1] 13255
## [1] "removing: radi_bun_t_lung"
## [1] 13255
## [1] "removing: radi_bun_t_mammo"
## [1] 13247
## [1] "removing: radi_bun_t_mammogra"
## [1] 13247
## [1] "removing: radi_bun_t_management"
## [1] 13247
## [1] "removing: radi_bun_t_marrow"
## [1] 13247
## [1] "removing: radi_bun_t_mastoids"
## [1] 13247
## [1] "removing: radi_bun_t_mra"
## [1] 13247
## [1] "removing: radi_bun_t_myelography"
## [1] 13247
## [1] "removing: radi_bun_t_nuclear"
## [1] 13247
## [1] "removing: radi_bun_t_oncology"
## [1] 13247
## [1] "removing: radi_bun_t_pancreas"
## [1] 13247
## [1] "removing: radi_bun_t_pelvi"
## [1] 13203
## [1] "removing: radi_bun_t_penis"
## [1] 13203
## [1] "removing: radi_bun_t_pet"
## [1] 13203
## [1] "removing: radi_bun_t_pituitary"
## [1] 13203
## [1] "removing: radi_bun_t_plan"
## [1] 13202
## [1] "removing: radi_bun_t_plasma"
## [1] 13202
## [1] "removing: radi_bun_t_radiation"
## [1] 13202
## [1] "removing: radi_bun_t_radio"
## [1] 13202
## [1] "removing: radi_bun_t_repair"
## [1] 13202
## [1] "removing: radi_bun_t_scan"
## [1] 13202
## [1] "removing: radi_bun_t_sinuses"
## [1] 13200
## [1] "removing: radi_bun_t_skull"
## [1] 13200
## [1] "removing: radi_bun_t_socket"
## [1] 13200
## [1] "removing: radi_bun_t_speech"
## [1] 13200
## [1] "removing: radi_bun_t_spleen"
## [1] 13200
## [1] "removing: radi_bun_t_tear"
## [1] 13200
## [1] "removing: radi_bun_t_teeth"
## [1] 13200
## [1] "removing: radi_bun_t_therapy"
## [1] 13200
## [1] "removing: radi_bun_t_thigh"
## [1] 13200
## [1] "removing: radi_bun_t_thorac"
## [1] 13122
## [1] "removing: radi_bun_t_thorax"
## [1] 13107
## [1] "removing: radi_bun_t_throat"
## [1] 13107
## [1] "removing: radi_bun_t_thrombosis"
## [1] 13107
## [1] "removing: radi_bun_t_thyroid"
## [1] 13107
## [1] "removing: radi_bun_t_toe"
## [1] 13103
## [1] "removing: radi_bun_t_tract"
## [1] 13103
## [1] "removing: radi_bun_t_treatment"
## [1] 13103
## [1] "removing: radi_bun_t_trunk"
## [1] 13103
## [1] "removing: radi_bun_t_tumor"
## [1] 13103
## [1] "removing: radi_bun_t_upper"
## [1] 13063
## [1] "removing: radi_bun_t_urethra"
## [1] 13063
## [1] "removing: radi_bun_t_urinary"
## [1] 13063
## [1] "removing: radi_bun_t_vein"
## [1] 13063
## [1] "removing: radi_bun_t_ventilation"
## [1] 13063
## [1] "removing: radi_bun_t_veous"
## [1] 13063
## [1] "removing: radi_bun_t_vessel"
## [1] 13063
## [1] "removing: radi_bun_t_with_dye"
## [1] 13060
## [1] "removing: radi_bun_t_xray"
## [1] 13060
## [1] "removing: radi_bun_t_xtremity"
## [1] 13060
## [1] "removing: path_bun_t_acet"
## [1] 13060
## [1] "removing: path_bun_t_acid"
## [1] 13060
## [1] "removing: path_bun_t_acute"
## [1] 13060
## [1] "removing: path_bun_t_agent"
## [1] 13060
## [1] "removing: path_bun_t_alkaline"
## [1] 13060
## [1] "removing: path_bun_t_allerg"
## [1] 13060
## [1] "removing: path_bun_t_amikacin"
## [1] 13060
## [1] "removing: path_bun_t_amino"
## [1] 13060
## [1] "removing: path_bun_t_amitripytline"
## [1] 13060
## [1] "removing: path_bun_t_ammonia"
## [1] 13060
## [1] "removing: path_bun_t_amniotic"
## [1] 13060
## [1] "removing: path_bun_t_anabolic"
## [1] 13060
## [1] "removing: path_bun_t_analgesics"
## [1] 13060
## [1] "removing: path_bun_t_analysis"
## [1] 13060
## [1] "removing: path_bun_t_anti"
## [1] 13060
## [1] "removing: path_bun_t_antibod"
## [1] 13060
## [1] "removing: path_bun_t_antidepressant"
## [1] 13060
## [1] "removing: path_bun_t_antiepileptics"
## [1] 13060
## [1] "removing: path_bun_t_antipsychotic"
## [1] 13060
## [1] "removing: path_bun_t_aortic"
## [1] 13060
## [1] "removing: path_bun_t_assay"
## [1] 13059
## [1] "removing: path_bun_t_autopsy"
## [1] 13059
## [1] "removing: path_bun_t_bact"
## [1] 13059
## [1] "removing: path_bun_t_bacteria"
## [1] 13059
## [1] "removing: path_bun_t_barbiturate"
## [1] 13059
## [1] "removing: path_bun_t_benzo"
## [1] 13059
## [1] "removing: path_bun_t_bile"
## [1] 13059
## [1] "removing: path_bun_t_bilirubin"
## [1] 13059
## [1] "removing: path_bun_t_biopsy"
## [1] 13059
## [1] "removing: path_bun_t_bleeding"
## [1] 13059
## [1] "removing: path_bun_t_blood"
## [1] 13059
## [1] "removing: path_bun_t_cadmium"
## [1] 13059
## [1] "removing: path_bun_t_calcium"
## [1] 13059
## [1] "removing: path_bun_t_cannabinoids"
## [1] 13059
## [1] "removing: path_bun_t_carbamazepine"
## [1] 13059
## [1] "removing: path_bun_t_carbon"
## [1] 13059
## [1] "removing: path_bun_t_catecholamine"
## [1] 13059
## [1] "removing: path_bun_t_chlamydia"
## [1] 13059
## [1] "removing: path_bun_t_chloride"
## [1] 13059
## [1] "removing: path_bun_t_chromosome"
## [1] 13059
## [1] "removing: path_bun_t_chromotograph"
## [1] 13059
## [1] "removing: path_bun_t_class"
## [1] 13059
## [1] "removing: path_bun_t_clot"
## [1] 13059
## [1] "removing: path_bun_t_clozapine"
## [1] 13059
## [1] "removing: path_bun_t_coagulation"
## [1] 13059
## [1] "removing: path_bun_t_cocaine"
## [1] 13059
## [1] "removing: path_bun_t_colon"
## [1] 13059
## [1] "removing: path_bun_t_complete"
## [1] 13057
## [1] "removing: path_bun_t_comprehen"
## [1] 13057
## [1] "removing: path_bun_t_count"
## [1] 13057
## [1] "removing: path_bun_t_cpk"
## [1] 13057
## [1] "removing: path_bun_t_creatinine"
## [1] 13057
## [1] "removing: path_bun_t_cryopreservd"
## [1] 13057
## [1] "removing: path_bun_t_culture"
## [1] 13057
## [1] "removing: path_bun_t_cyanide"
## [1] 13057
## [1] "removing: path_bun_t_cyclosporine"
## [1] 13057
## [1] "removing: path_bun_t_cystines"
## [1] 13057
## [1] "removing: path_bun_t_cytopath"
## [1] 13057
## [1] "removing: path_bun_t_cytopathol"
## [1] 13057
## [1] "removing: path_bun_t_dehydroepiandrosterone"
## [1] 13057
## [1] "removing: path_bun_t_desipramine"
## [1] 13057
## [1] "removing: path_bun_t_detect"
## [1] 13057
## [1] "removing: path_bun_t_digoxin"
## [1] 13057
## [1] "removing: path_bun_t_dihydro"
## [1] 13057
## [1] "removing: path_bun_t_dilation"
## [1] 13057
## [1] "removing: path_bun_t_dioxide"
## [1] 13057
## [1] "removing: path_bun_t_dipropylacetic"
## [1] 13057
## [1] "removing: path_bun_t_disease"
## [1] 13057
## [1] "removing: path_bun_t_dna"
## [1] 13057
## [1] "removing: path_bun_t_draw"
## [1] 13057
## [1] "removing: path_bun_t_drug"
## [1] 13057
## [1] "removing: path_bun_t_dysfunction"
## [1] 13057
## [1] "removing: path_bun_t_embryo"
## [1] 13057
## [1] "removing: path_bun_t_encephalitis"
## [1] 13057
## [1] "removing: path_bun_t_endocrine"
## [1] 13057
## [1] "removing: path_bun_t_enzyme"
## [1] 13057
## [1] "removing: path_bun_t_epstein-barr"
## [1] 13057
## [1] "removing: path_bun_t_estrogen"
## [1] 13057
## [1] "removing: path_bun_t_ethanol"
## [1] 13057
## [1] "removing: path_bun_t_evaluation"
## [1] 13057
## [1] "removing: path_bun_t_factor"
## [1] 13057
## [1] "removing: path_bun_t_fecal"
## [1] 13057
## [1] "removing: path_bun_t_fentanyl"
## [1] 13057
## [1] "removing: path_bun_t_ferritin"
## [1] 13057
## [1] "removing: path_bun_t_fetal"
## [1] 13057
## [1] "removing: path_bun_t_fibrinogen"
## [1] 13057
## [1] "removing: path_bun_t_fibronlytic"
## [1] 13057
## [1] "removing: path_bun_t_flouride"
## [1] 13057
## [1] "removing: path_bun_t_fluid"
## [1] 13057
## [1] "removing: path_bun_t_free"
## [1] 13057
## [1] "removing: path_bun_t_function"
## [1] 13057
## [1] "removing: path_bun_t_galacto"
## [1] 13057
## [1] "removing: path_bun_t_gases"
## [1] 13057
## [1] "removing: path_bun_t_gastrin"
## [1] 13057
## [1] "removing: path_bun_t_gene"
## [1] 13057
## [1] "removing: path_bun_t_general"
## [1] 13057
## [1] "removing: path_bun_t_genome"
## [1] 13057
## [1] "removing: path_bun_t_genotpying"
## [1] 13057
## [1] "removing: path_bun_t_giardia"
## [1] 13057
## [1] "removing: path_bun_t_glucagon"
## [1] 13057
## [1] "removing: path_bun_t_glucose"
## [1] 13057
## [1] "removing: path_bun_t_gonorr"
## [1] 13057
## [1] "removing: path_bun_t_growth"
## [1] 13057
## [1] "removing: path_bun_t_gynecologic"
## [1] 13057
## [1] "removing: path_bun_t_haloperidol"
## [1] 13057
## [1] "removing: path_bun_t_health"
## [1] 13057
## [1] "removing: path_bun_t_hearing"
## [1] 13057
## [1] "removing: path_bun_t_heavy"
## [1] 13057
## [1] "removing: path_bun_t_heinz"
## [1] 13057
## [1] "removing: path_bun_t_hematocrit"
## [1] 13057
## [1] "removing: path_bun_t_hemoglobin"
## [1] 13057
## [1] "removing: path_bun_t_hep"
## [1] 13057
## [1] "removing: path_bun_t_hepati"
## [1] 13057
## [1] "removing: path_bun_t_heridatary"
## [1] 13057
## [1] "removing: path_bun_t_heroin"
## [1] 13057
## [1] "removing: path_bun_t_herpes"
## [1] 13057
## [1] "removing: path_bun_t_hiv"
## [1] 13057
## [1] "removing: path_bun_t_hold"
## [1] 13057
## [1] "removing: path_bun_t_hormone"
## [1] 13057
## [1] "removing: path_bun_t_hpa"
## [1] 13057
## [1] "removing: path_bun_t_hsv"
## [1] 13057
## [1] "removing: path_bun_t_imipramine"
## [1] 13057
## [1] "removing: path_bun_t_immuno"
## [1] 13057
## [1] "removing: path_bun_t_immunoassay"
## [1] 13057
## [1] "removing: path_bun_t_immunohisto"
## [1] 13057
## [1] "removing: path_bun_t_influenza"
## [1] 13057
## [1] "removing: path_bun_t_insulin"
## [1] 13057
## [1] "removing: path_bun_t_iodine"
## [1] 13057
## [1] "removing: path_bun_t_iron"
## [1] 13057
## [1] "removing: path_bun_t_lab"
## [1] 13057
## [1] "removing: path_bun_t_lamotrigine"
## [1] 13057
## [1] "removing: path_bun_t_levetiracetam"
## [1] 13057
## [1] "removing: path_bun_t_lidocaine"
## [1] 13057
## [1] "removing: path_bun_t_lipid"
## [1] 13057
## [1] "removing: path_bun_t_lipoprotein"
## [1] 13057
## [1] "removing: path_bun_t_lithium"
## [1] 13057
## [1] "removing: path_bun_t_loss"
## [1] 13057
## [1] "removing: path_bun_t_low"
## [1] 13057
## [1] "removing: path_bun_t_lung"
## [1] 13057
## [1] "removing: path_bun_t_lyme"
## [1] 13057
## [1] "removing: path_bun_t_lympg"
## [1] 13057
## [1] "removing: path_bun_t_magnesium"
## [1] 13057
## [1] "removing: path_bun_t_malaria"
## [1] 13057
## [1] "removing: path_bun_t_mercury"
## [1] 13057
## [1] "removing: path_bun_t_metabolic"
## [1] 13057
## [1] "removing: path_bun_t_metal"
## [1] 13057
## [1] "removing: path_bun_t_microbe"
## [1] 13057
## [1] "removing: path_bun_t_microscop"
## [1] 13057
## [1] "removing: path_bun_t_microscopic"
## [1] 13057
## [1] "removing: path_bun_t_microscopy"
## [1] 13057
## [1] "removing: path_bun_t_mitocondrial"
## [1] 13057
## [1] "removing: path_bun_t_mopath"
## [1] 13057
## [1] "removing: path_bun_t_mumps"
## [1] 13057
## [1] "removing: path_bun_t_mycophenolate"
## [1] 13057
## [1] "removing: path_bun_t_nicotine"
## [1] 13057
## [1] "removing: path_bun_t_nile"
## [1] 13057
## [1] "removing: path_bun_t_non-opioid"
## [1] 13057
## [1] "removing: path_bun_t_nonantibody"
## [1] 13057
## [1] "removing: path_bun_t_nucleic"
## [1] 13057
## [1] "removing: path_bun_t_obstretric"
## [1] 13057
## [1] "removing: path_bun_t_occult"
## [1] 13057
## [1] "removing: path_bun_t_onco"
## [1] 13057
## [1] "removing: path_bun_t_oocyte"
## [1] 13057
## [1] "removing: path_bun_t_opioid"
## [1] 13057
## [1] "removing: path_bun_t_ovulation"
## [1] 13057
## [1] "removing: path_bun_t_oxycodone"
## [1] 13057
## [1] "removing: path_bun_t_panel"
## [1] 13057
## [1] "removing: path_bun_t_paper"
## [1] 13057
## [1] "removing: path_bun_t_patho"
## [1] 13057
## [1] "removing: path_bun_t_pathologist"
## [1] 13057
## [1] "removing: path_bun_t_period"
## [1] 13057
## [1] "removing: path_bun_t_phenobarbital"
## [1] 13057
## [1] "removing: path_bun_t_phenytoin"
## [1] 13057
## [1] "removing: path_bun_t_phosphatase"
## [1] 13057
## [1] "removing: path_bun_t_phosphorus"
## [1] 13057
## [1] "removing: path_bun_t_pituitary"
## [1] 13057
## [1] "removing: path_bun_t_plasminogen"
## [1] 13057
## [1] "removing: path_bun_t_poliovirus"
## [1] 13057
## [1] "removing: path_bun_t_potassium"
## [1] 13057
## [1] "removing: path_bun_t_pregabalin"
## [1] 13057
## [1] "removing: path_bun_t_pregnancy"
## [1] 13056
## [1] "removing: path_bun_t_primidone"
## [1] 13056
## [1] "removing: path_bun_t_procainamide"
## [1] 13056
## [1] "removing: path_bun_t_procedure"
## [1] 13056
## [1] "removing: path_bun_t_progesterone"
## [1] 13056
## [1] "removing: path_bun_t_prophobulinogen"
## [1] 13056
## [1] "removing: path_bun_t_prophyrins"
## [1] 13056
## [1] "removing: path_bun_t_propoxyphene"
## [1] 13056
## [1] "removing: path_bun_t_prostate"
## [1] 13056
## [1] "removing: path_bun_t_protein"
## [1] 13056
## [1] "removing: path_bun_t_psa"
## [1] 13056
## [1] "removing: path_bun_t_quantitative"
## [1] 13056
## [1] "removing: path_bun_t_quinide"
## [1] 13056
## [1] "removing: path_bun_t_quinine"
## [1] 13056
## [1] "removing: path_bun_t_reagent"
## [1] 13056
## [1] "removing: path_bun_t_renal"
## [1] 13056
## [1] "removing: path_bun_t_renin"
## [1] 13056
## [1] "removing: path_bun_t_retinal"
## [1] 13056
## [1] "removing: path_bun_t_rickettsia"
## [1] 13056
## [1] "removing: path_bun_t_rotovirus"
## [1] 13056
## [1] "removing: path_bun_t_rubella"
## [1] 13056
## [1] "removing: path_bun_t_salicylate"
## [1] 13056
## [1] "removing: path_bun_t_salmonella"
## [1] 13056
## [1] "removing: path_bun_t_scan"
## [1] 13056
## [1] "removing: path_bun_t_screen"
## [1] 13056
## [1] "removing: path_bun_t_sedative"
## [1] 13056
## [1] "removing: path_bun_t_semen"
## [1] 13056
## [1] "removing: path_bun_t_sequence"
## [1] 13056
## [1] "removing: path_bun_t_serotonin"
## [1] 13056
## [1] "removing: path_bun_t_sex"
## [1] 13056
## [1] "removing: path_bun_t_silica"
## [1] 13056
## [1] "removing: path_bun_t_sirolimus"
## [1] 13056
## [1] "removing: path_bun_t_skin"
## [1] 13056
## [1] "removing: path_bun_t_slenium"
## [1] 13056
## [1] "removing: path_bun_t_smear"
## [1] 13056
## [1] "removing: path_bun_t_specimen"
## [1] 13056
## [1] "removing: path_bun_t_sperm"
## [1] 13056
## [1] "removing: path_bun_t_steroid"
## [1] 13056
## [1] "removing: path_bun_t_stimulation"
## [1] 13056
## [1] "removing: path_bun_t_strep"
## [1] 13056
## [1] "removing: path_bun_t_syphilis"
## [1] 13056
## [1] "removing: path_bun_t_syringe"
## [1] 13056
## [1] "removing: path_bun_t_tacrolims"
## [1] 13056
## [1] "removing: path_bun_t_test"
## [1] 13056
## [1] "removing: path_bun_t_testosterone"
## [1] 13056
## [1] "removing: path_bun_t_thawing"
## [1] 13056
## [1] "removing: path_bun_t_theophylline"
## [1] 13056
## [1] "removing: path_bun_t_thyroid"
## [1] 13056
## [1] "removing: path_bun_t_time"
## [1] 13056
## [1] "removing: path_bun_t_tissue"
## [1] 13056
## [1] "removing: path_bun_t_tobramycin"
## [1] 13056
## [1] "removing: path_bun_t_tolerance"
## [1] 13056
## [1] "removing: path_bun_t_total"
## [1] 13056
## [1] "removing: path_bun_t_toxoplasma"
## [1] 13056
## [1] "removing: path_bun_t_tpiramate"
## [1] 13056
## [1] "removing: path_bun_t_transfusion"
## [1] 13056
## [1] "removing: path_bun_t_tumor"
## [1] 13056
## [1] "removing: path_bun_t_typing"
## [1] 13056
## [1] "removing: path_bun_t_urinalysis"
## [1] 13055
## [1] "removing: path_bun_t_urine"
## [1] 13055
## [1] "removing: path_bun_t_vancomycin"
## [1] 13055
## [1] "removing: path_bun_t_vein"
## [1] 13055
## [1] "removing: path_bun_t_venipuncture"
## [1] 13055
## [1] "removing: path_bun_t_virus"
## [1] 13055
## [1] "removing: path_bun_t_vitamin"
## [1] 13055
## [1] "removing: path_bun_t_west"
## [1] 13055
## [1] "removing: path_bun_t_with_scope"
## [1] 13055
## [1] "removing: path_bun_t_without_scope"
## [1] 13055
## [1] "removing: path_bun_t_zonisamide"
## [1] 13055
## [1] "removing: anes_bun_t_abdom"
## [1] 13055
## [1] "removing: anes_bun_t_add - on"
## [1] 13055
## [1] "removing: anes_bun_t_adrenal"
## [1] 13055
## [1] "removing: anes_bun_t_amputation"
## [1] 13055
## [1] "removing: anes_bun_t_analg"
## [1] 13055
## [1] "removing: anes_bun_t_anes"
## [1] 13055
## [1] "removing: anes_bun_t_anesth"
## [1] 13055
## [1] "removing: anes_bun_t_area"
## [1] 13055
## [1] "removing: anes_bun_t_arest"
## [1] 13055
## [1] "removing: anes_bun_t_arteriography"
## [1] 13055
## [1] "removing: anes_bun_t_artery"
## [1] 13055
## [1] "removing: anes_bun_t_biopsy"
## [1] 13055
## [1] "removing: anes_bun_t_bladder"
## [1] 13055
## [1] "removing: anes_bun_t_blood"
## [1] 13055
## [1] "removing: anes_bun_t_bone"
## [1] 13055
## [1] "removing: anes_bun_t_breast"
## [1] 13055
## [1] "removing: anes_bun_t_bronchi"
## [1] 13055
## [1] "removing: anes_bun_t_burn"
## [1] 13055
## [1] "removing: anes_bun_t_casting"
## [1] 13055
## [1] "removing: anes_bun_t_cervix"
## [1] 13055
## [1] "removing: anes_bun_t_chemonucleolysis"
## [1] 13055
## [1] "removing: anes_bun_t_chest"
## [1] 13055
## [1] "removing: anes_bun_t_cleft"
## [1] 13055
## [1] "removing: anes_bun_t_cord"
## [1] 13055
## [1] "removing: anes_bun_t_corneal"
## [1] 13055
## [1] "removing: anes_bun_t_cs"
## [1] 13055
## [1] "removing: anes_bun_t_debride"
## [1] 13055
## [1] "removing: anes_bun_t_deliver"
## [1] 13055
## [1] "removing: anes_bun_t_drainage"
## [1] 13055
## [1] "removing: anes_bun_t_duct"
## [1] 13055
## [1] "removing: anes_bun_t_ear"
## [1] 13055
## [1] "removing: anes_bun_t_elbow"
## [1] 13055
## [1] "removing: anes_bun_t_electroshock"
## [1] 13055
## [1] "removing: anes_bun_t_embolectomy"
## [1] 13055
## [1] "removing: anes_bun_t_endoscopy"
## [1] 13055
## [1] "removing: anes_bun_t_epidural"
## [1] 13055
## [1] "removing: anes_bun_t_esophag"
## [1] 13055
## [1] "removing: anes_bun_t_eyelid"
## [1] 13055
## [1] "removing: anes_bun_t_facial"
## [1] 13055
## [1] "removing: anes_bun_t_fat"
## [1] 13055
## [1] "removing: anes_bun_t_femoral"
## [1] 13055
## [1] "removing: anes_bun_t_fentanyl"
## [1] 13055
## [1] "removing: anes_bun_t_genitalia"
## [1] 13055
## [1] "removing: anes_bun_t_glands"
## [1] 13055
## [1] "removing: anes_bun_t_head"
## [1] 13055
## [1] "removing: anes_bun_t_hernia"
## [1] 13055
## [1] "removing: anes_bun_t_humer"
## [1] 13055
## [1] "removing: anes_bun_t_hydromorphone"
## [1] 13055
## [1] "removing: anes_bun_t_hysterectomy"
## [1] 13055
## [1] "removing: anes_bun_t_image"
## [1] 13055
## [1] "removing: anes_bun_t_insertion"
## [1] 13055
## [1] "removing: anes_bun_t_intracranial"
## [1] 13055
## [1] "removing: anes_bun_t_iredectomy"
## [1] 13055
## [1] "removing: anes_bun_t_joint"
## [1] 13055
## [1] "removing: anes_bun_t_ketorolac"
## [1] 13055
## [1] "removing: anes_bun_t_kidney"
## [1] 13055
## [1] "removing: anes_bun_t_knee"
## [1] 13055
## [1] "removing: anes_bun_t_larynx"
## [1] 13055
## [1] "removing: anes_bun_t_layer"
## [1] 13055
## [1] "removing: anes_bun_t_leg"
## [1] 13055
## [1] "removing: anes_bun_t_lip"
## [1] 13055
## [1] "removing: anes_bun_t_liver"
## [1] 13055
## [1] "removing: anes_bun_t_local"
## [1] 13055
## [1] "removing: anes_bun_t_lower"
## [1] 13055
## [1] "removing: anes_bun_t_lumbar"
## [1] 13055
## [1] "removing: anes_bun_t_lung"
## [1] 13055
## [1] "removing: anes_bun_t_major"
## [1] 13055
## [1] "removing: anes_bun_t_manipulation"
## [1] 13055
## [1] "removing: anes_bun_t_midazolam"
## [1] 13055
## [1] "removing: anes_bun_t_mod_sed"
## [1] 13055
## [1] "removing: anes_bun_t_neck"
## [1] 13055
## [1] "removing: anes_bun_t_nerve"
## [1] 13055
## [1] "removing: anes_bun_t_nose"
## [1] 13055
## [1] "removing: anes_bun_t_open"
## [1] 13055
## [1] "removing: anes_bun_t_organ"
## [1] 13055
## [1] "removing: anes_bun_t_pacemaker"
## [1] 13055
## [1] "removing: anes_bun_t_palate"
## [1] 13055
## [1] "removing: anes_bun_t_pelvic"
## [1] 13055
## [1] "removing: anes_bun_t_pelvis"
## [1] 13055
## [1] "removing: anes_bun_t_penis"
## [1] 13055
## [1] "removing: anes_bun_t_percutaneous"
## [1] 13055
## [1] "removing: anes_bun_t_plastic"
## [1] 13055
## [1] "removing: anes_bun_t_propofol"
## [1] 13055
## [1] "removing: anes_bun_t_prostate"
## [1] 13055
## [1] "removing: anes_bun_t_pump"
## [1] 13055
## [1] "removing: anes_bun_t_puncture"
## [1] 13055
## [1] "removing: anes_bun_t_radical"
## [1] 13055
## [1] "removing: anes_bun_t_release"
## [1] 13055
## [1] "removing: anes_bun_t_removal"
## [1] 13055
## [1] "removing: anes_bun_t_repair"
## [1] 13055
## [1] "removing: anes_bun_t_replace"
## [1] 13055
## [1] "removing: anes_bun_t_rib"
## [1] 13055
## [1] "removing: anes_bun_t_sedation"
## [1] 13055
## [1] "removing: anes_bun_t_shoulder"
## [1] 13055
## [1] "removing: anes_bun_t_sinus"
## [1] 13055
## [1] "removing: anes_bun_t_skull"
## [1] 13055
## [1] "removing: anes_bun_t_sperm"
## [1] 13055
## [1] "removing: anes_bun_t_spine"
## [1] 13055
## [1] "removing: anes_bun_t_spit"
## [1] 13055
## [1] "removing: anes_bun_t_sternal"
## [1] 13055
## [1] "removing: anes_bun_t_stone"
## [1] 13055
## [1] "removing: anes_bun_t_surg"
## [1] 13055
## [1] "removing: anes_bun_t_tendon"
## [1] 13055
## [1] "removing: anes_bun_t_testis"
## [1] 13055
## [1] "removing: anes_bun_t_thigh"
## [1] 13055
## [1] "removing: anes_bun_t_thyriod"
## [1] 13055
## [1] "removing: anes_bun_t_trachea"
## [1] 13055
## [1] "removing: anes_bun_t_transplant"
## [1] 13055
## [1] "removing: anes_bun_t_tromethamine"
## [1] 13055
## [1] "removing: anes_bun_t_tubal"
## [1] 13055
## [1] "removing: anes_bun_t_tympanotomy"
## [1] 13055
## [1] "removing: anes_bun_t_upper"
## [1] 13055
## [1] "removing: anes_bun_t_ureter"
## [1] 13055
## [1] "removing: anes_bun_t_urethra"
## [1] 13055
## [1] "removing: anes_bun_t_vag"
## [1] 13055
## [1] "removing: anes_bun_t_vein"
## [1] 13055
## [1] "removing: anes_bun_t_ventilation"
## [1] 13055
## [1] "removing: anes_bun_t_vesectomy"
## [1] 13055
## [1] "removing: anes_bun_t_vessel"
## [1] 13055
## [1] "removing: anes_bun_t_viteroretinal"
## [1] 13055
## [1] "removing: anes_bun_t_wall"
## [1] 13055
## [1] "removing: anes_bun_t_wrist"
## [1] 13055
## [1] "removing: faci_bun_t_advanced"
## [1] 13055
## [1] "removing: faci_bun_t_analysis"
## [1] 13055
## [1] "removing: faci_bun_t_annual"
## [1] 13055
## [1] "removing: faci_bun_t_assessmnt"
## [1] 13055
## [1] "removing: faci_bun_t_audit"
## [1] 13055
## [1] "removing: faci_bun_t_basic"
## [1] 13055
## [1] "removing: faci_bun_t_behav"
## [1] 13055
## [1] "removing: faci_bun_t_bus"
## [1] 13055
## [1] "removing: faci_bun_t_care"
## [1] 13049
## [1] "removing: faci_bun_t_chng"
## [1] 13049
## [1] "removing: faci_bun_t_computer"
## [1] 13049
## [1] "removing: faci_bun_t_conf"
## [1] 13049
## [1] "removing: faci_bun_t_consultation"
## [1] 13042
## [1] "removing: faci_bun_t_counseling"
## [1] 13042
## [1] "removing: faci_bun_t_critical"
## [1] 13042
## [1] "removing: faci_bun_t_data"
## [1] 13042
## [1] "removing: faci_bun_t_direct"
## [1] 13042
## [1] "removing: faci_bun_t_disability"
## [1] 13042
## [1] "removing: faci_bun_t_discharge"
## [1] 13042
## [1] "removing: faci_bun_t_dommicl"
## [1] 13042
## [1] "removing: faci_bun_t_exam"
## [1] 13042
## [1] "removing: faci_bun_t_fac"
## [1] 13039
## [1] "removing: faci_bun_t_facility"
## [1] 13039
## [1] "removing: faci_bun_t_follow-up"
## [1] 13007
## [1] "removing: faci_bun_t_handling"
## [1] 13007
## [1] "removing: faci_bun_t_home"
## [1] 13004
## [1] "removing: faci_bun_t_hospice"
## [1] 13004
## [1] "removing: faci_bun_t_hospital"
## [1] 13004
## [1] "removing: faci_bun_t_initial"
## [1] 13004
## [1] "removing: faci_bun_t_inpatient"
## [1] 13004
## [1] "removing: faci_bun_t_interfacility"
## [1] 13004
## [1] "removing: faci_bun_t_interpof"
## [1] 13004
## [1] "removing: faci_bun_t_lab"
## [1] 13004
## [1] "removing: faci_bun_t_life"
## [1] 13004
## [1] "removing: faci_bun_t_nonemergency"
## [1] 13004
## [1] "removing: faci_bun_t_noner"
## [1] 13004
## [1] "removing: faci_bun_t_nursing"
## [1] 13004
## [1] "removing: faci_bun_t_observation"
## [1] 13004
## [1] "removing: faci_bun_t_on_call"
## [1] 13004
## [1] "removing: faci_bun_t_online"
## [1] 13004
## [1] "removing: faci_bun_t_phlebotomy"
## [1] 13004
## [1] "removing: faci_bun_t_phone"
## [1] 13004
## [1] "removing: faci_bun_t_physician"
## [1] 13004
## [1] "removing: faci_bun_t_postop"
## [1] 13004
## [1] "removing: faci_bun_t_preventine"
## [1] 13004
## [1] "removing: faci_bun_t_prolong"
## [1] 13002
## [1] "removing: faci_bun_t_service"
## [1] 13002
## [1] "removing: faci_bun_t_smoking"
## [1] 13002
## [1] "removing: faci_bun_t_specimen"
## [1] 13002
## [1] "removing: faci_bun_t_standby"
## [1] 13002
## [1] "removing: faci_bun_t_subsequent"
## [1] 13002
## [1] "removing: faci_bun_t_support"
## [1] 13002
## [1] "removing: faci_bun_t_taxi"
## [1] 13002
## [1] "removing: faci_bun_t_team"
## [1] 13002
## [1] "removing: faci_bun_t_transort"
## [1] 13002
## [1] "removing: faci_bun_t_travel"
## [1] 13002
## [1] "removing: faci_bun_t_van"
## [1] 13002
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 32 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 faci_bun_t_dept              0.660
##  2 faci_bun_t_emergency         0.660
##  3 radi_bun_t_without_dye       0.431
##  4 radi_bun_t_ct                0.409
##  5 radi_bun_t_brain             0.387
##  6 radi_bun_t_head              0.382
##  7 radi_bun_t_mri               0.243
##  8 faci_bun_t_office            0.237
##  9 faci_bun_t_pat               0.237
## 10 medi_bun_t_inject            0.233
## # ... with 22 more rows
xray_shld_clean %>% get_tag_density_information("faci_bun_t_emergency") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ faci_bun_t_emergency"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 65.9
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[faci_bun_t_emergency == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 30 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 radi_bun_t_without_dye      0.485 
##  2 radi_bun_t_mri              0.480 
##  3 radi_bun_t_joint            0.392 
##  4 radi_bun_t_spine            0.176 
##  5 radi_bun_t_neck             0.172 
##  6 faci_bun_t_visit            0.156 
##  7 faci_bun_t_office           0.152 
##  8 faci_bun_t_pat              0.152 
##  9 radi_bun_t_ct               0.0903
## 10 radi_bun_t_brain            0.0822
## # ... with 20 more rows
xray_shld_clean %>% get_tag_density_information("radi_bun_t_mri") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ radi_bun_t_mri"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 59.6
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[radi_bun_t_mri == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 29 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 faci_bun_t_visit             0.219
##  2 faci_bun_t_office            0.212
##  3 faci_bun_t_pat               0.212
##  4 radi_bun_t_spine             0.181
##  5 radi_bun_t_neck              0.170
##  6 radi_bun_t_joint             0.147
##  7 radi_bun_t_ct                0.137
##  8 radi_bun_t_without_dye       0.137
##  9 radi_bun_t_head              0.106
## 10 medi_bun_t_exercise          0.092
## # ... with 19 more rows
xray_shld_clean %>% get_tag_density_information("faci_bun_t_visit") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ faci_bun_t_visit"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 14.7
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[faci_bun_t_visit == T]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 28 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 radi_bun_t_spine            0.194 
##  2 radi_bun_t_neck             0.174 
##  3 radi_bun_t_joint            0.170 
##  4 medi_bun_t_exercise         0.144 
##  5 medi_bun_t_therapeutic      0.144 
##  6 faci_bun_t_est              0.0994
##  7 radi_bun_t_elbow            0.0945
##  8 radi_bun_t_ct               0.0926
##  9 radi_bun_t_without_dye      0.0926
## 10 medi_bun_t_psytx            0.0915
## # ... with 18 more rows
xray_shld_clean %>% get_tag_density_information("radi_bun_t_spine") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ radi_bun_t_spine"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 24.7
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[radi_bun_t_spine == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 27 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 radi_bun_t_joint            0.192 
##  2 medi_bun_t_therapeutic      0.159 
##  3 medi_bun_t_exercise         0.159 
##  4 faci_bun_t_est              0.112 
##  5 radi_bun_t_elbow            0.0979
##  6 medi_bun_t_manual           0.0899
##  7 medi_bun_t_psytx            0.0875
##  8 radi_bun_t_hand             0.0814
##  9 radi_bun_t_view             0.0769
## 10 radi_bun_t_wrist            0.0642
## # ... with 17 more rows
xray_shld_clean %>% get_tag_density_information("radi_bun_t_joint") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ radi_bun_t_joint"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 25.9
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[radi_bun_t_joint == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 26 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 medi_bun_t_therapeutic      0.163 
##  2 medi_bun_t_exercise         0.162 
##  3 faci_bun_t_est              0.108 
##  4 radi_bun_t_elbow            0.105 
##  5 medi_bun_t_manual           0.0941
##  6 medi_bun_t_psytx            0.0928
##  7 radi_bun_t_hand             0.086 
##  8 radi_bun_t_view             0.0754
##  9 radi_bun_t_chest            0.0687
## 10 radi_bun_t_wrist            0.0685
## # ... with 16 more rows
xray_shld_clean %>% get_tag_density_information("medi_bun_t_therapeutic") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ medi_bun_t_therapeutic"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 31.6
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[medi_bun_t_therapeutic == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 24 x 2
##    name               correlation
##    <chr>                    <dbl>
##  1 radi_bun_t_elbow        0.113 
##  2 faci_bun_t_est          0.108 
##  3 medi_bun_t_psytx        0.0989
##  4 radi_bun_t_hand         0.0914
##  5 radi_bun_t_view         0.0778
##  6 radi_bun_t_chest        0.0743
##  7 radi_bun_t_wrist        0.0713
##  8 radi_bun_t_bone         0.0672
##  9 medi_bun_t_inject       0.059 
## 10 radi_bun_t_humerus      0.0524
## # ... with 14 more rows
xray_shld_clean %>% get_tag_density_information("medi_bun_t_psytx") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ medi_bun_t_psytx"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 25.8
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[medi_bun_t_psytx == F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 23 x 2
##    name               correlation
##    <chr>                    <dbl>
##  1 radi_bun_t_elbow        0.116 
##  2 faci_bun_t_est          0.110 
##  3 radi_bun_t_hand         0.0935
##  4 radi_bun_t_view         0.0802
##  5 radi_bun_t_chest        0.0765
##  6 radi_bun_t_wrist        0.0715
##  7 radi_bun_t_bone         0.0684
##  8 medi_bun_t_inject       0.0561
##  9 radi_bun_t_humerus      0.054 
## 10 medi_bun_t_manual       0.0534
## # ... with 13 more rows
xray_shld_clean <- xray_shld_clean[radi_bun_t_elbow == F & radi_bun_t_hand == F & radi_bun_t_view == F &  radi_bun_t_chest == F & radi_bun_t_wrist == F &  radi_bun_t_bone == F & radi_bun_t_humerus==F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 12 x 2
##    name                    correlation
##    <chr>                         <dbl>
##  1 faci_bun_t_est               0.137 
##  2 medi_bun_t_inject            0.0531
##  3 medi_bun_t_manual            0.052 
##  4 faci_bun_t_office            0.0392
##  5 faci_bun_t_pat               0.0392
##  6 radi_bun_t_head              0.0305
##  7 radi_bun_t_blade             0.0284
##  8 medi_bun_t_immun             0.0256
##  9 medi_bun_t_immunization      0.0256
## 10 medi_bun_t_vacc              0.0256
## 11 medi_bun_t_stimulation       0.0248
## 12 radi_bun_t_neck              0.015
xray_shld_clean %>% get_tag_density_information("medi_bun_t_inject") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ medi_bun_t_inject"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 44.5
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[radi_bun_t_head == F & radi_bun_t_blade == F & radi_bun_t_neck == F & medi_bun_t_inject==F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 8 x 2
##   name                    correlation
##   <chr>                         <dbl>
## 1 faci_bun_t_est               0.141 
## 2 medi_bun_t_manual            0.0532
## 3 faci_bun_t_office            0.0414
## 4 faci_bun_t_pat               0.0414
## 5 medi_bun_t_immun             0.0261
## 6 medi_bun_t_immunization      0.0261
## 7 medi_bun_t_vacc              0.0261
## 8 medi_bun_t_stimulation       0.0254
xray_shld_clean %>% get_tag_density_information("medi_bun_t_manual") %>% print()
## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which will
## replace the existing scale.
## [1] "tp_med ~ medi_bun_t_manual"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 23.6
## $dist_plots

## 
## $stat_tables

xray_shld_clean <- xray_shld_clean[ medi_bun_t_manual==F]
xray_shld_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

xray_shld_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 7 x 2
##   name                    correlation
##   <chr>                         <dbl>
## 1 faci_bun_t_est               0.141 
## 2 faci_bun_t_office            0.0417
## 3 faci_bun_t_pat               0.0417
## 4 medi_bun_t_immun             0.0262
## 5 medi_bun_t_immunization      0.0262
## 6 medi_bun_t_vacc              0.0262
## 7 medi_bun_t_stimulation       0.0229
# xray_shld_clean %>% get_tag_density_information("medi_bun_t_immun") %>% print()
xray_shld_clean <- xray_shld_clean[ medi_bun_t_immun==F]
xray_shld_clean <- xray_shld_clean[,`:=`(
  surg_sp_name_clean = surg_sp_npi %>% map_chr(get_npi_standard_name),
  surg_bp_name_clean = surg_bp_npi %>% map_chr(get_npi_standard_name),
  
  medi_sp_name_clean = medi_sp_npi %>% map_chr(get_npi_standard_name),
  medi_bp_name_clean = medi_bp_npi %>% map_chr(get_npi_standard_name),
  
  radi_sp_name_clean = radi_sp_npi %>% map_chr(get_npi_standard_name),
  radi_bp_name_clean = radi_bp_npi %>% map_chr(get_npi_standard_name),
  
  path_sp_name_clean = path_sp_npi %>% map_chr(get_npi_standard_name),
  path_bp_name_clean = path_bp_npi %>% map_chr(get_npi_standard_name),
  
  anes_sp_name_clean = anes_sp_npi %>% map_chr(get_npi_standard_name),
  anes_bp_name_clean = anes_bp_npi %>% map_chr(get_npi_standard_name),
  
  faci_sp_name_clean = faci_sp_npi %>% map_chr(get_npi_standard_name),
  faci_bp_name_clean = faci_bp_npi %>% map_chr(get_npi_standard_name)
                           )]
xray_shld_clean_btbv5 <- xray_shld_clean %>% btbv5_radi_fac_only(
                                  osa_group_p=NA,
                                  osa_class_p = NA,
                                  osa_specialization_p = NA
                                  ) %>% 
  .[,`:=`(procedure_type=42, 
          procedure_modifier="Xray Shoulder + Office Visit", 
          ingest_date =Sys.Date())]
xray_shld_clean_btbv5$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##     5.0   155.5   180.7   221.2   258.2  1206.9
spine_q1 <- xray_shld_clean_btbv5$tp_med_med %>% quantile(.25)
spine_q3 <- xray_shld_clean_btbv5$tp_med_med %>% quantile(.75)
spine_iqr <- xray_shld_clean_btbv5$tp_med_med %>% IQR()
# xray_ankle_clean_btbv5_final <- xray_ankle_clean_btbv5[tp_med_med >spine_q1 -1.5*spine_iqr & tp_med_med < spine_q3 + 1.5*spine_iqr ]
xray_shld_clean_btbv5_final <- xray_shld_clean_btbv5[tp_cnt_cnt >5 ]
xray_shld_clean_btbv5$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##     5.0   155.5   180.7   221.2   258.2  1206.9
xray_shld_clean_btbv5_final$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##    10.0   160.1   178.2   218.2   241.2   831.7
bq_table_upload(x=procedure_dev_table, values= xray_shld_clean_btbv5_final42, create_disposition='CREATE_IF_NEEDED', write_disposition='WRITE_APPEND')