Introduction

In this section we will:
* identify which Skin Cancer Removal procedures were excluded and why * identify which different Skin Cancer Removal 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")
skin_cancer <- bun_proc[proc_code_str_sorted %>% stri_detect_regex("(11601)|(11602)|(11603)|(11604)|(11606)|(1160F)|(11620)|(11621)|(11622)|(11623)|(11624)|(11626)|(11640)|(11641)|(11642)|(11643)|(11644)|(11646)" )]
skin_cancer %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

skin_cancer %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 340 x 2
##    name                           correlation
##    <chr>                                <dbl>
##  1 anes_bun_t_anesth                    0.740
##  2 anes_bun_t_anes                      0.737
##  3 medi_bun_t_sodium                    0.644
##  4 medi_bun_t_inject                    0.583
##  5 anes_bun_t_neck                      0.503
##  6 anes_bun_t_head                      0.477
##  7 surg_bun_t_proctosigmoidoscopy       0.410
##  8 surg_bun_t_sigmoidoscopy             0.410
##  9 anes_bun_t_abdom                     0.410
## 10 anes_bun_t_upper                     0.410
## # ... with 330 more rows
cols_to_check <-  skin_cancer %>% 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 < 2] %>% .[["tag"]]
skin_clean <- remove_bun_proc_with_rare_tags(outlier_tag_list=outlier_tag_list, df=skin_cancer)
## [1] "Start of rare tag removal"
## [1] "nrow:2917 , ncol:1404"
## [1] "nrow:2917"
## [1] "removing: surg_bun_t_abd"
## [1] 2917
## [1] "removing: surg_bun_t_abdom"
## [1] 2917
## [1] "removing: surg_bun_t_abdomen"
## [1] 2917
## [1] "removing: surg_bun_t_ablate"
## [1] 2917
## [1] "removing: surg_bun_t_abortion"
## [1] 2917
## [1] "removing: surg_bun_t_abscess"
## [1] 2916
## [1] "removing: surg_bun_t_acell"
## [1] 2916
## [1] "removing: surg_bun_t_acellular"
## [1] 2916
## [1] "removing: surg_bun_t_acne"
## [1] 2915
## [1] "removing: surg_bun_t_acute"
## [1] 2915
## [1] "removing: surg_bun_t_add-on"
## [1] 2914
## [1] "removing: surg_bun_t_adenoid"
## [1] 2914
## [1] "removing: surg_bun_t_adjust"
## [1] 2914
## [1] "removing: surg_bun_t_airway"
## [1] 2914
## [1] "removing: surg_bun_t_amput"
## [1] 2914
## [1] "removing: surg_bun_t_anal"
## [1] 2913
## [1] "removing: surg_bun_t_analysis"
## [1] 2913
## [1] "removing: surg_bun_t_aneurysm"
## [1] 2913
## [1] "removing: surg_bun_t_ankle"
## [1] 2913
## [1] "removing: surg_bun_t_anoscopy"
## [1] 2913
## [1] "removing: surg_bun_t_ant"
## [1] 2912
## [1] "removing: surg_bun_t_antepartum"
## [1] 2912
## [1] "removing: surg_bun_t_aorta"
## [1] 2912
## [1] "removing: surg_bun_t_aortic"
## [1] 2912
## [1] "removing: surg_bun_t_aply"
## [1] 2912
## [1] "removing: surg_bun_t_appendectomy"
## [1] 2912
## [1] "removing: surg_bun_t_application"
## [1] 2912
## [1] "removing: surg_bun_t_apply"
## [1] 2912
## [1] "removing: surg_bun_t_approach"
## [1] 2912
## [1] "removing: surg_bun_t_arterial"
## [1] 2912
## [1] "removing: surg_bun_t_artery"
## [1] 2912
## [1] "removing: surg_bun_t_arthro"
## [1] 2912
## [1] "removing: surg_bun_t_arthroplasty"
## [1] 2912
## [1] "removing: surg_bun_t_arthroscopy"
## [1] 2912
## [1] "removing: surg_bun_t_artificial"
## [1] 2912
## [1] "removing: surg_bun_t_augmentation"
## [1] 2912
## [1] "removing: surg_bun_t_autograft"
## [1] 2912
## [1] "removing: surg_bun_t_balloon"
## [1] 2912
## [1] "removing: surg_bun_t_bed"
## [1] 2912
## [1] "removing: surg_bun_t_biceps"
## [1] 2912
## [1] "removing: surg_bun_t_bile"
## [1] 2912
## [1] "removing: surg_bun_t_bilobectomy"
## [1] 2912
## [1] "removing: surg_bun_t_bladder"
## [1] 2911
## [1] "removing: surg_bun_t_bleeding"
## [1] 2911
## [1] "removing: surg_bun_t_block"
## [1] 2911
## [1] "removing: surg_bun_t_blockage"
## [1] 2911
## [1] "removing: surg_bun_t_blood"
## [1] 2910
## [1] "removing: surg_bun_t_bone"
## [1] 2910
## [1] "removing: surg_bun_t_bowel"
## [1] 2910
## [1] "removing: surg_bun_t_brace"
## [1] 2910
## [1] "removing: surg_bun_t_brain"
## [1] 2910
## [1] "removing: surg_bun_t_bronchial"
## [1] 2910
## [1] "removing: surg_bun_t_bronchoscopy"
## [1] 2910
## [1] "removing: surg_bun_t_brow"
## [1] 2910
## [1] "removing: surg_bun_t_bulge"
## [1] 2910
## [1] "removing: surg_bun_t_burn"
## [1] 2910
## [1] "removing: surg_bun_t_burr"
## [1] 2910
## [1] "removing: surg_bun_t_buttck"
## [1] 2910
## [1] "removing: surg_bun_t_buttock"
## [1] 2910
## [1] "removing: surg_bun_t_byp"
## [1] 2910
## [1] "removing: surg_bun_t_bypass"
## [1] 2910
## [1] "removing: surg_bun_t_cabg"
## [1] 2910
## [1] "removing: surg_bun_t_canal"
## [1] 2910
## [1] "removing: surg_bun_t_cannula"
## [1] 2910
## [1] "removing: surg_bun_t_capillary"
## [1] 2910
## [1] "removing: surg_bun_t_capsule"
## [1] 2910
## [1] "removing: surg_bun_t_carotid"
## [1] 2910
## [1] "removing: surg_bun_t_cartilage"
## [1] 2910
## [1] "removing: surg_bun_t_cast"
## [1] 2910
## [1] "removing: surg_bun_t_cath"
## [1] 2910
## [1] "removing: surg_bun_t_cavity"
## [1] 2910
## [1] "removing: surg_bun_t_cell"
## [1] 2910
## [1] "removing: surg_bun_t_cervix"
## [1] 2910
## [1] "removing: surg_bun_t_cesarean"
## [1] 2910
## [1] "removing: surg_bun_t_chamber"
## [1] 2910
## [1] "removing: surg_bun_t_change"
## [1] 2910
## [1] "removing: surg_bun_t_chemical"
## [1] 2910
## [1] "removing: surg_bun_t_chemodenerv"
## [1] 2910
## [1] "removing: surg_bun_t_chest"
## [1] 2910
## [1] "removing: surg_bun_t_chin"
## [1] 2910
## [1] "removing: surg_bun_t_cholangiogram"
## [1] 2910
## [1] "removing: surg_bun_t_cholangiopancreatograph"
## [1] 2910
## [1] "removing: surg_bun_t_cholecystoenterostomy"
## [1] 2910
## [1] "removing: surg_bun_t_chronic"
## [1] 2910
## [1] "removing: surg_bun_t_circulation"
## [1] 2910
## [1] "removing: surg_bun_t_circumcision"
## [1] 2910
## [1] "removing: surg_bun_t_clamp"
## [1] 2910
## [1] "removing: surg_bun_t_clavicle"
## [1] 2910
## [1] "removing: surg_bun_t_clearance"
## [1] 2909
## [1] "removing: surg_bun_t_cleft"
## [1] 2909
## [1] "removing: surg_bun_t_clitoris"
## [1] 2909
## [1] "removing: surg_bun_t_cloacal"
## [1] 2909
## [1] "removing: surg_bun_t_closed"
## [1] 2909
## [1] "removing: surg_bun_t_clot"
## [1] 2909
## [1] "removing: surg_bun_t_collar"
## [1] 2909
## [1] "removing: surg_bun_t_coloproctostomy"
## [1] 2909
## [1] "removing: surg_bun_t_colostomy"
## [1] 2909
## [1] "removing: surg_bun_t_complex"
## [1] 2909
## [1] "removing: surg_bun_t_compression"
## [1] 2909
## [1] "removing: surg_bun_t_contriction"
## [1] 2909
## [1] "removing: surg_bun_t_control"
## [1] 2909
## [1] "removing: surg_bun_t_cord"
## [1] 2909
## [1] "removing: surg_bun_t_cornea"
## [1] 2909
## [1] "removing: surg_bun_t_coronary"
## [1] 2909
## [1] "removing: surg_bun_t_coronoid"
## [1] 2909
## [1] "removing: surg_bun_t_correct"
## [1] 2909
## [1] "removing: surg_bun_t_cranial"
## [1] 2909
## [1] "removing: surg_bun_t_craniofacial"
## [1] 2909
## [1] "removing: surg_bun_t_cryotherapy"
## [1] 2909
## [1] "removing: surg_bun_t_cuff"
## [1] 2909
## [1] "removing: surg_bun_t_cult"
## [1] 2909
## [1] "removing: surg_bun_t_cysto"
## [1] 2908
## [1] "removing: surg_bun_t_cystometrogram"
## [1] 2908
## [1] "removing: surg_bun_t_cystoscopy"
## [1] 2908
## [1] "removing: surg_bun_t_cystouretero"
## [1] 2908
## [1] "removing: surg_bun_t_debrid"
## [1] 2908
## [1] "removing: surg_bun_t_debride"
## [1] 2908
## [1] "removing: surg_bun_t_decompression"
## [1] 2908
## [1] "removing: surg_bun_t_deep"
## [1] 2907
## [1] "removing: surg_bun_t_defect"
## [1] 2907
## [1] "removing: surg_bun_t_defib"
## [1] 2907
## [1] "removing: surg_bun_t_deformity"
## [1] 2907
## [1] "removing: surg_bun_t_degenerated"
## [1] 2907
## [1] "removing: surg_bun_t_delivery"
## [1] 2907
## [1] "removing: surg_bun_t_deplet"
## [1] 2907
## [1] "removing: surg_bun_t_dermabrasion"
## [1] 2907
## [1] "removing: surg_bun_t_design"
## [1] 2907
## [1] "removing: surg_bun_t_diagnostic"
## [1] 2906
## [1] "removing: surg_bun_t_dialysis"
## [1] 2906
## [1] "removing: surg_bun_t_diaphragm"
## [1] 2906
## [1] "removing: surg_bun_t_digit"
## [1] 2906
## [1] "removing: surg_bun_t_dilat"
## [1] 2905
## [1] "removing: surg_bun_t_dilation"
## [1] 2905
## [1] "removing: surg_bun_t_disc"
## [1] 2905
## [1] "removing: surg_bun_t_diskectomy"
## [1] 2905
## [1] "removing: surg_bun_t_dislocat"
## [1] 2905
## [1] "removing: surg_bun_t_dissect"
## [1] 2905
## [1] "removing: surg_bun_t_donar"
## [1] 2905
## [1] "removing: surg_bun_t_donor"
## [1] 2905
## [1] "removing: surg_bun_t_draw"
## [1] 2905
## [1] "removing: surg_bun_t_dressing"
## [1] 2905
## [1] "removing: surg_bun_t_drill"
## [1] 2905
## [1] "removing: surg_bun_t_drug"
## [1] 2905
## [1] "removing: surg_bun_t_duoden"
## [1] 2905
## [1] "removing: surg_bun_t_ear"
## [1] 2905
## [1] "removing: surg_bun_t_eardrum"
## [1] 2905
## [1] "removing: surg_bun_t_ectopic"
## [1] 2905
## [1] "removing: surg_bun_t_egd"
## [1] 2905
## [1] "removing: surg_bun_t_electrical"
## [1] 2905
## [1] "removing: surg_bun_t_electrode"
## [1] 2905
## [1] "removing: surg_bun_t_electroejaculation"
## [1] 2905
## [1] "removing: surg_bun_t_electrolysis"
## [1] 2905
## [1] "removing: surg_bun_t_embolize"
## [1] 2905
## [1] "removing: surg_bun_t_embryo"
## [1] 2905
## [1] "removing: surg_bun_t_endo"
## [1] 2905
## [1] "removing: surg_bun_t_endoscopy"
## [1] 2905
## [1] "removing: surg_bun_t_endovas"
## [1] 2905
## [1] "removing: surg_bun_t_enlarge"
## [1] 2905
## [1] "removing: surg_bun_t_enterectomy"
## [1] 2905
## [1] "removing: surg_bun_t_epiderm"
## [1] 2905
## [1] "removing: surg_bun_t_epididymis"
## [1] 2905
## [1] "removing: surg_bun_t_epiphysis"
## [1] 2905
## [1] "removing: surg_bun_t_episiotomy"
## [1] 2905
## [1] "removing: surg_bun_t_esoph"
## [1] 2905
## [1] "removing: surg_bun_t_esophagoscopy"
## [1] 2905
## [1] "removing: surg_bun_t_esophagus"
## [1] 2905
## [1] "removing: surg_bun_t_excessive"
## [1] 2905
## [1] "removing: surg_bun_t_excise"
## [1] 2905
## [1] "removing: surg_bun_t_excision"
## [1] 2905
## [1] "removing: surg_bun_t_exostosis"
## [1] 2905
## [1] "removing: surg_bun_t_explora"
## [1] 2905
## [1] "removing: surg_bun_t_explore"
## [1] 2905
## [1] "removing: surg_bun_t_extra"
## [1] 2905
## [1] "removing: surg_bun_t_extremity"
## [1] 2905
## [1] "removing: surg_bun_t_eyelashes"
## [1] 2905
## [1] "removing: surg_bun_t_fallopian"
## [1] 2905
## [1] "removing: surg_bun_t_fascia"
## [1] 2904
## [1] "removing: surg_bun_t_fat"
## [1] 2904
## [1] "removing: surg_bun_t_femur"
## [1] 2904
## [1] "removing: surg_bun_t_fibula"
## [1] 2904
## [1] "removing: surg_bun_t_finger"
## [1] 2904
## [1] "removing: surg_bun_t_fissure"
## [1] 2904
## [1] "removing: surg_bun_t_fistula"
## [1] 2904
## [1] "removing: surg_bun_t_fixation"
## [1] 2904
## [1] "removing: surg_bun_t_flow"
## [1] 2904
## [1] "removing: surg_bun_t_fluid"
## [1] 2904
## [1] "removing: surg_bun_t_fna"
## [1] 2904
## [1] "removing: surg_bun_t_follow-up"
## [1] 2904
## [1] "removing: surg_bun_t_forearm"
## [1] 2904
## [1] "removing: surg_bun_t_foreign"
## [1] 2904
## [1] "removing: surg_bun_t_fracture"
## [1] 2904
## [1] "removing: surg_bun_t_free"
## [1] 2904
## [1] "removing: surg_bun_t_frontal"
## [1] 2904
## [1] "removing: surg_bun_t_fundoplasty"
## [1] 2904
## [1] "removing: surg_bun_t_fusion"
## [1] 2904
## [1] "removing: surg_bun_t_gallbladder"
## [1] 2904
## [1] "removing: surg_bun_t_gastrointestinal"
## [1] 2904
## [1] "removing: surg_bun_t_gastrostomy"
## [1] 2904
## [1] "removing: surg_bun_t_gentialia"
## [1] 2904
## [1] "removing: surg_bun_t_gi"
## [1] 2904
## [1] "removing: surg_bun_t_gland"
## [1] 2903
## [1] "removing: surg_bun_t_glaucoma"
## [1] 2903
## [1] "removing: surg_bun_t_growth"
## [1] 2903
## [1] "removing: surg_bun_t_gum"
## [1] 2903
## [1] "removing: surg_bun_t_hair"
## [1] 2903
## [1] "removing: surg_bun_t_hallux"
## [1] 2903
## [1] "removing: surg_bun_t_halo"
## [1] 2903
## [1] "removing: surg_bun_t_hand"
## [1] 2903
## [1] "removing: surg_bun_t_harvest"
## [1] 2903
## [1] "removing: surg_bun_t_heart"
## [1] 2903
## [1] "removing: surg_bun_t_hematoma"
## [1] 2903
## [1] "removing: surg_bun_t_hemorrhoid"
## [1] 2903
## [1] "removing: surg_bun_t_hemorrhoidopexy"
## [1] 2903
## [1] "removing: surg_bun_t_hernia"
## [1] 2903
## [1] "removing: surg_bun_t_hole"
## [1] 2903
## [1] "removing: surg_bun_t_hormone"
## [1] 2903
## [1] "removing: surg_bun_t_humer"
## [1] 2903
## [1] "removing: surg_bun_t_hydrocele"
## [1] 2903
## [1] "removing: surg_bun_t_hyst"
## [1] 2903
## [1] "removing: surg_bun_t_hysterectomy"
## [1] 2903
## [1] "removing: surg_bun_t_iliopsoas"
## [1] 2903
## [1] "removing: surg_bun_t_illiac"
## [1] 2903
## [1] "removing: surg_bun_t_imag"
## [1] 2903
## [1] "removing: surg_bun_t_implant"
## [1] 2903
## [1] "removing: surg_bun_t_incision"
## [1] 2903
## [1] "removing: surg_bun_t_infect"
## [1] 2903
## [1] "removing: surg_bun_t_injection"
## [1] 2903
## [1] "removing: surg_bun_t_inner"
## [1] 2903
## [1] "removing: surg_bun_t_insert"
## [1] 2902
## [1] "removing: surg_bun_t_interlaminar"
## [1] 2901
## [1] "removing: surg_bun_t_internal"
## [1] 2901
## [1] "removing: surg_bun_t_intestine"
## [1] 2901
## [1] "removing: surg_bun_t_intracorporeal"
## [1] 2901
## [1] "removing: surg_bun_t_intracranial"
## [1] 2901
## [1] "removing: surg_bun_t_intranasal"
## [1] 2901
## [1] "removing: surg_bun_t_inverted"
## [1] 2901
## [1] "removing: surg_bun_t_iris"
## [1] 2901
## [1] "removing: surg_bun_t_jaw"
## [1] 2901
## [1] "removing: surg_bun_t_kidney"
## [1] 2901
## [1] "removing: surg_bun_t_knee"
## [1] 2901
## [1] "removing: surg_bun_t_kneecap"
## [1] 2901
## [1] "removing: surg_bun_t_knuckle"
## [1] 2901
## [1] "removing: surg_bun_t_kyphectomy"
## [1] 2901
## [1] "removing: surg_bun_t_laceration"
## [1] 2901
## [1] "removing: surg_bun_t_lamina"
## [1] 2901
## [1] "removing: surg_bun_t_laminotomy"
## [1] 2901
## [1] "removing: surg_bun_t_laparoscop"
## [1] 2901
## [1] "removing: surg_bun_t_large"
## [1] 2901
## [1] "removing: surg_bun_t_laryngoscopy"
## [1] 2901
## [1] "removing: surg_bun_t_larynx"
## [1] 2901
## [1] "removing: surg_bun_t_laser"
## [1] 2901
## [1] "removing: surg_bun_t_lavage"
## [1] 2901
## [1] "removing: surg_bun_t_lefort"
## [1] 2901
## [1] "removing: surg_bun_t_lengthen"
## [1] 2901
## [1] "removing: surg_bun_t_ligament"
## [1] 2901
## [1] "removing: surg_bun_t_ligation"
## [1] 2901
## [1] "removing: surg_bun_t_lining"
## [1] 2901
## [1] "removing: surg_bun_t_lipectomy"
## [1] 2901
## [1] "removing: surg_bun_t_liver"
## [1] 2901
## [1] "removing: surg_bun_t_lobectomy"
## [1] 2901
## [1] "removing: surg_bun_t_long"
## [1] 2901
## [1] "removing: surg_bun_t_lower"
## [1] 2901
## [1] "removing: surg_bun_t_lumbar"
## [1] 2901
## [1] "removing: surg_bun_t_lung"
## [1] 2901
## [1] "removing: surg_bun_t_major"
## [1] 2901
## [1] "removing: surg_bun_t_mandible"
## [1] 2901
## [1] "removing: surg_bun_t_marrow"
## [1] 2901
## [1] "removing: surg_bun_t_mastoid"
## [1] 2901
## [1] "removing: surg_bun_t_material"
## [1] 2901
## [1] "removing: surg_bun_t_maxilla"
## [1] 2901
## [1] "removing: surg_bun_t_mcp"
## [1] 2901
## [1] "removing: surg_bun_t_mesh"
## [1] 2901
## [1] "removing: surg_bun_t_metacarpal"
## [1] 2901
## [1] "removing: surg_bun_t_microvasc"
## [1] 2901
## [1] "removing: surg_bun_t_middle"
## [1] 2901
## [1] "removing: surg_bun_t_midfoot"
## [1] 2901
## [1] "removing: surg_bun_t_mitral"
## [1] 2901
## [1] "removing: surg_bun_t_mouth"
## [1] 2901
## [1] "removing: surg_bun_t_myelography"
## [1] 2901
## [1] "removing: surg_bun_t_myomectomy"
## [1] 2901
## [1] "removing: surg_bun_t_nail"
## [1] 2900
## [1] "removing: surg_bun_t_nasal"
## [1] 2899
## [1] "removing: surg_bun_t_nasolacrimal"
## [1] 2899
## [1] "removing: surg_bun_t_needle"
## [1] 2899
## [1] "removing: surg_bun_t_nephrectomy"
## [1] 2899
## [1] "removing: surg_bun_t_nerve"
## [1] 2899
## [1] "removing: surg_bun_t_neuroelectrode"
## [1] 2899
## [1] "removing: surg_bun_t_neuroendoscopy"
## [1] 2899
## [1] "removing: surg_bun_t_nipple"
## [1] 2899
## [1] "removing: surg_bun_t_njx"
## [1] 2899
## [1] "removing: surg_bun_t_nodule"
## [1] 2899
## [1] "removing: surg_bun_t_nonfacial"
## [1] 2899
## [1] "removing: surg_bun_t_nose"
## [1] 2899
## [1] "removing: surg_bun_t_nosebleed"
## [1] 2899
## [1] "removing: surg_bun_t_nuero"
## [1] 2899
## [1] "removing: surg_bun_t_obstetrical"
## [1] 2898
## [1] "removing: surg_bun_t_open"
## [1] 2898
## [1] "removing: surg_bun_t_opening"
## [1] 2898
## [1] "removing: surg_bun_t_oral"
## [1] 2898
## [1] "removing: surg_bun_t_orbitocranial"
## [1] 2898
## [1] "removing: surg_bun_t_orchiopexy"
## [1] 2898
## [1] "removing: surg_bun_t_other"
## [1] 2898
## [1] "removing: surg_bun_t_ovarian"
## [1] 2898
## [1] "removing: surg_bun_t_ovary"
## [1] 2898
## [1] "removing: surg_bun_t_pacemaker"
## [1] 2898
## [1] "removing: surg_bun_t_pad"
## [1] 2898
## [1] "removing: surg_bun_t_palate"
## [1] 2898
## [1] "removing: surg_bun_t_palm"
## [1] 2898
## [1] "removing: surg_bun_t_palsy"
## [1] 2898
## [1] "removing: surg_bun_t_pancreas"
## [1] 2898
## [1] "removing: surg_bun_t_pancreatectomy"
## [1] 2898
## [1] "removing: surg_bun_t_paravert"
## [1] 2897
## [1] "removing: surg_bun_t_pedcle"
## [1] 2897
## [1] "removing: surg_bun_t_peel"
## [1] 2897
## [1] "removing: surg_bun_t_pelvic"
## [1] 2897
## [1] "removing: surg_bun_t_pelvis"
## [1] 2896
## [1] "removing: surg_bun_t_penile"
## [1] 2896
## [1] "removing: surg_bun_t_penis"
## [1] 2896
## [1] "removing: surg_bun_t_percut"
## [1] 2896
## [1] "removing: surg_bun_t_percutaneous"
## [1] 2896
## [1] "removing: surg_bun_t_perineum"
## [1] 2896
## [1] "removing: surg_bun_t_pernineum"
## [1] 2896
## [1] "removing: surg_bun_t_pharynx"
## [1] 2896
## [1] "removing: surg_bun_t_pierce"
## [1] 2896
## [1] "removing: surg_bun_t_pilonidal"
## [1] 2895
## [1] "removing: surg_bun_t_plastic"
## [1] 2895
## [1] "removing: surg_bun_t_plate"
## [1] 2895
## [1] "removing: surg_bun_t_pneumonectomy"
## [1] 2895
## [1] "removing: surg_bun_t_polyp"
## [1] 2895
## [1] "removing: surg_bun_t_pouch"
## [1] 2895
## [1] "removing: surg_bun_t_pregnancy"
## [1] 2895
## [1] "removing: surg_bun_t_prepare"
## [1] 2895
## [1] "removing: surg_bun_t_pressure"
## [1] 2895
## [1] "removing: surg_bun_t_process"
## [1] 2895
## [1] "removing: surg_bun_t_proctosigmoidoscopy"
## [1] 2894
## [1] "removing: surg_bun_t_prolapse"
## [1] 2894
## [1] "removing: surg_bun_t_prostat"
## [1] 2894
## [1] "removing: surg_bun_t_prostate"
## [1] 2894
## [1] "removing: surg_bun_t_prosthesis"
## [1] 2894
## [1] "removing: surg_bun_t_prosthetic"
## [1] 2894
## [1] "removing: surg_bun_t_pulmonary"
## [1] 2894
## [1] "removing: surg_bun_t_punch"
## [1] 2894
## [1] "removing: surg_bun_t_puncture"
## [1] 2894
## [1] "removing: surg_bun_t_pyeloplasty"
## [1] 2894
## [1] "removing: surg_bun_t_radius"
## [1] 2894
## [1] "removing: surg_bun_t_realignment"
## [1] 2894
## [1] "removing: surg_bun_t_rechannel"
## [1] 2894
## [1] "removing: surg_bun_t_rectal"
## [1] 2893
## [1] "removing: surg_bun_t_rectum"
## [1] 2893
## [1] "removing: surg_bun_t_reduction"
## [1] 2893
## [1] "removing: surg_bun_t_reinforce"
## [1] 2893
## [1] "removing: surg_bun_t_release"
## [1] 2893
## [1] "removing: surg_bun_t_renal"
## [1] 2893
## [1] "removing: surg_bun_t_replantation"
## [1] 2893
## [1] "removing: surg_bun_t_reset"
## [1] 2893
## [1] "removing: surg_bun_t_retina"
## [1] 2892
## [1] "removing: surg_bun_t_retinopathy"
## [1] 2892
## [1] "removing: surg_bun_t_rib"
## [1] 2892
## [1] "removing: surg_bun_t_ridge"
## [1] 2892
## [1] "removing: surg_bun_t_ring"
## [1] 2892
## [1] "removing: surg_bun_t_roof"
## [1] 2892
## [1] "removing: surg_bun_t_rotator"
## [1] 2892
## [1] "removing: surg_bun_t_routine"
## [1] 2892
## [1] "removing: surg_bun_t_sacrum"
## [1] 2892
## [1] "removing: surg_bun_t_salivary"
## [1] 2892
## [1] "removing: surg_bun_t_scapula"
## [1] 2892
## [1] "removing: surg_bun_t_scar"
## [1] 2892
## [1] "removing: surg_bun_t_scope"
## [1] 2892
## [1] "removing: surg_bun_t_scrotum"
## [1] 2892
## [1] "removing: surg_bun_t_segment"
## [1] 2892
## [1] "removing: surg_bun_t_segmental"
## [1] 2892
## [1] "removing: surg_bun_t_segmentectomy"
## [1] 2892
## [1] "removing: surg_bun_t_septum"
## [1] 2892
## [1] "removing: surg_bun_t_sex"
## [1] 2892
## [1] "removing: surg_bun_t_sheath"
## [1] 2892
## [1] "removing: surg_bun_t_shorten"
## [1] 2892
## [1] "removing: surg_bun_t_shunt"
## [1] 2892
## [1] "removing: surg_bun_t_sigmoidoscopy"
## [1] 2892
## [1] "removing: surg_bun_t_simple"
## [1] 2892
## [1] "removing: surg_bun_t_sinus"
## [1] 2892
## [1] "removing: surg_bun_t_skeletal"
## [1] 2892
## [1] "removing: surg_bun_t_skull"
## [1] 2892
## [1] "removing: surg_bun_t_sleeve"
## [1] 2892
## [1] "removing: surg_bun_t_slipped"
## [1] 2892
## [1] "removing: surg_bun_t_small"
## [1] 2892
## [1] "removing: surg_bun_t_socket"
## [1] 2892
## [1] "removing: surg_bun_t_soft"
## [1] 2892
## [1] "removing: surg_bun_t_sore"
## [1] 2892
## [1] "removing: surg_bun_t_sperm"
## [1] 2892
## [1] "removing: surg_bun_t_sphenoid"
## [1] 2892
## [1] "removing: surg_bun_t_sphincter"
## [1] 2892
## [1] "removing: surg_bun_t_spine"
## [1] 2892
## [1] "removing: surg_bun_t_spleen"
## [1] 2892
## [1] "removing: surg_bun_t_splint"
## [1] 2892
## [1] "removing: surg_bun_t_split"
## [1] 2892
## [1] "removing: surg_bun_t_stem"
## [1] 2892
## [1] "removing: surg_bun_t_stenosis"
## [1] 2892
## [1] "removing: surg_bun_t_stent"
## [1] 2892
## [1] "removing: surg_bun_t_sternal"
## [1] 2892
## [1] "removing: surg_bun_t_sternum"
## [1] 2892
## [1] "removing: surg_bun_t_stimulation"
## [1] 2892
## [1] "removing: surg_bun_t_stomach"
## [1] 2892
## [1] "removing: surg_bun_t_stone"
## [1] 2892
## [1] "removing: surg_bun_t_stop"
## [1] 2892
## [1] "removing: surg_bun_t_strapping"
## [1] 2892
## [1] "removing: surg_bun_t_stricture"
## [1] 2892
## [1] "removing: surg_bun_t_styloid"
## [1] 2892
## [1] "removing: surg_bun_t_sub"
## [1] 2892
## [1] "removing: surg_bun_t_suction"
## [1] 2892
## [1] "removing: surg_bun_t_superficial"
## [1] 2892
## [1] "removing: surg_bun_t_suspension"
## [1] 2892
## [1] "removing: surg_bun_t_sutures"
## [1] 2892
## [1] "removing: surg_bun_t_sweat"
## [1] 2892
## [1] "removing: surg_bun_t_tail"
## [1] 2892
## [1] "removing: surg_bun_t_tear"
## [1] 2892
## [1] "removing: surg_bun_t_temporal"
## [1] 2892
## [1] "removing: surg_bun_t_tendon"
## [1] 2892
## [1] "removing: surg_bun_t_testis"
## [1] 2892
## [1] "removing: surg_bun_t_thigh"
## [1] 2892
## [1] "removing: surg_bun_t_thoracoscopy"
## [1] 2892
## [1] "removing: surg_bun_t_thoracotomy"
## [1] 2892
## [1] "removing: surg_bun_t_thorax"
## [1] 2892
## [1] "removing: surg_bun_t_throat"
## [1] 2892
## [1] "removing: surg_bun_t_thrombin"
## [1] 2892
## [1] "removing: surg_bun_t_thrombo"
## [1] 2892
## [1] "removing: surg_bun_t_thumb"
## [1] 2892
## [1] "removing: surg_bun_t_thymus"
## [1] 2892
## [1] "removing: surg_bun_t_thyroid"
## [1] 2892
## [1] "removing: surg_bun_t_tip"
## [1] 2892
## [1] "removing: surg_bun_t_tkr"
## [1] 2892
## [1] "removing: surg_bun_t_toe"
## [1] 2892
## [1] "removing: surg_bun_t_tongue"
## [1] 2892
## [1] "removing: surg_bun_t_tonsil"
## [1] 2892
## [1] "removing: surg_bun_t_torsion"
## [1] 2892
## [1] "removing: surg_bun_t_total"
## [1] 2892
## [1] "removing: surg_bun_t_tract"
## [1] 2892
## [1] "removing: surg_bun_t_transcath"
## [1] 2892
## [1] "removing: surg_bun_t_transfer"
## [1] 2892
## [1] "removing: surg_bun_t_transform"
## [1] 2892
## [1] "removing: surg_bun_t_transplant"
## [1] 2892
## [1] "removing: surg_bun_t_triceps"
## [1] 2892
## [1] "removing: surg_bun_t_tricuspid"
## [1] 2892
## [1] "removing: surg_bun_t_trigger"
## [1] 2892
## [1] "removing: surg_bun_t_trim"
## [1] 2892
## [1] "removing: surg_bun_t_tube"
## [1] 2892
## [1] "removing: surg_bun_t_tumor"
## [1] 2892
## [1] "removing: surg_bun_t_tunneled"
## [1] 2892
## [1] "removing: surg_bun_t_ulcer"
## [1] 2892
## [1] "removing: surg_bun_t_ulna"
## [1] 2892
## [1] "removing: surg_bun_t_umbil"
## [1] 2892
## [1] "removing: surg_bun_t_unit"
## [1] 2892
## [1] "removing: surg_bun_t_unstable"
## [1] 2892
## [1] "removing: surg_bun_t_upper"
## [1] 2892
## [1] "removing: surg_bun_t_ureter"
## [1] 2892
## [1] "removing: surg_bun_t_urethra"
## [1] 2892
## [1] "removing: surg_bun_t_urethrovaginal"
## [1] 2892
## [1] "removing: surg_bun_t_uterus"
## [1] 2892
## [1] "removing: surg_bun_t_uvula"
## [1] 2892
## [1] "removing: surg_bun_t_vag"
## [1] 2892
## [1] "removing: surg_bun_t_vagotomy"
## [1] 2892
## [1] "removing: surg_bun_t_valgus"
## [1] 2892
## [1] "removing: surg_bun_t_valve"
## [1] 2892
## [1] "removing: surg_bun_t_vascular"
## [1] 2892
## [1] "removing: surg_bun_t_vein"
## [1] 2892
## [1] "removing: surg_bun_t_venipuncture"
## [1] 2892
## [1] "removing: surg_bun_t_ventricular"
## [1] 2892
## [1] "removing: surg_bun_t_vertebra"
## [1] 2892
## [1] "removing: surg_bun_t_vessel"
## [1] 2892
## [1] "removing: surg_bun_t_wall"
## [1] 2892
## [1] "removing: surg_bun_t_wax"
## [1] 2892
## [1] "removing: surg_bun_t_web"
## [1] 2892
## [1] "removing: surg_bun_t_wedge"
## [1] 2892
## [1] "removing: surg_bun_t_window"
## [1] 2892
## [1] "removing: surg_bun_t_windpipe"
## [1] 2892
## [1] "removing: surg_bun_t_wrinkle"
## [1] 2892
## [1] "removing: surg_bun_t_wrist"
## [1] 2892
## [1] "removing: surg_bun_t_x-ray"
## [1] 2892
## [1] "removing: surg_bun_t_xenograft"
## [1] 2892
## [1] "removing: surg_bun_t_xenogrft"
## [1] 2892
## [1] "removing: surg_bun_t_xgraft"
## [1] 2892
## [1] "removing: medi_bun_t_analy"
## [1] 2892
## [1] "removing: medi_bun_t_applicat"
## [1] 2892
## [1] "removing: medi_bun_t_apply"
## [1] 2892
## [1] "removing: medi_bun_t_asses"
## [1] 2892
## [1] "removing: medi_bun_t_benzathine"
## [1] 2892
## [1] "removing: medi_bun_t_candida"
## [1] 2892
## [1] "removing: medi_bun_t_cast"
## [1] 2892
## [1] "removing: medi_bun_t_cathet"
## [1] 2892
## [1] "removing: medi_bun_t_catheterisation"
## [1] 2892
## [1] "removing: medi_bun_t_clostridium"
## [1] 2892
## [1] "removing: medi_bun_t_cochlear"
## [1] 2892
## [1] "removing: medi_bun_t_cold"
## [1] 2891
## [1] "removing: medi_bun_t_consult"
## [1] 2891
## [1] "removing: medi_bun_t_consultation"
## [1] 2891
## [1] "removing: medi_bun_t_crutch"
## [1] 2891
## [1] "removing: medi_bun_t_cyst"
## [1] 2891
## [1] "removing: medi_bun_t_derma"
## [1] 2891
## [1] "removing: medi_bun_t_dermal"
## [1] 2891
## [1] "removing: medi_bun_t_device"
## [1] 2890
## [1] "removing: medi_bun_t_discharg"
## [1] 2890
## [1] "removing: medi_bun_t_drain"
## [1] 2890
## [1] "removing: medi_bun_t_dtap"
## [1] 2890
## [1] "removing: medi_bun_t_dtap-ipv"
## [1] 2890
## [1] "removing: medi_bun_t_endocrine"
## [1] 2890
## [1] "removing: medi_bun_t_epstein-barr"
## [1] 2890
## [1] "removing: medi_bun_t_equipment"
## [1] 2890
## [1] "removing: medi_bun_t_estradiol"
## [1] 2890
## [1] "removing: medi_bun_t_follow-up"
## [1] 2890
## [1] "removing: medi_bun_t_gastroenterology"
## [1] 2890
## [1] "removing: medi_bun_t_gonorrhoeae"
## [1] 2890
## [1] "removing: medi_bun_t_hemorrhoid"
## [1] 2890
## [1] "removing: medi_bun_t_hepatitis"
## [1] 2890
## [1] "removing: medi_bun_t_hiv - 2"
## [1] 2890
## [1] "removing: medi_bun_t_hiv - 3"
## [1] 2890
## [1] "removing: medi_bun_t_home"
## [1] 2890
## [1] "removing: medi_bun_t_hormone"
## [1] 2890
## [1] "removing: medi_bun_t_hpv"
## [1] 2890
## [1] "removing: medi_bun_t_hydration"
## [1] 2889
## [1] "removing: medi_bun_t_immune"
## [1] 2889
## [1] "removing: medi_bun_t_immunoassay"
## [1] 2889
## [1] "removing: medi_bun_t_immunohisto"
## [1] 2889
## [1] "removing: medi_bun_t_insulin"
## [1] 2888
## [1] "removing: medi_bun_t_intrauterine"
## [1] 2888
## [1] "removing: medi_bun_t_iodine"
## [1] 2888
## [1] "removing: medi_bun_t_laiv4"
## [1] 2888
## [1] "removing: medi_bun_t_medroxyprogesterone"
## [1] 2888
## [1] "removing: medi_bun_t_mental"
## [1] 2888
## [1] "removing: medi_bun_t_metabolic"
## [1] 2888
## [1] "removing: medi_bun_t_methylprednisolone"
## [1] 2888
## [1] "removing: medi_bun_t_mgmt"
## [1] 2888
## [1] "removing: medi_bun_t_mmr"
## [1] 2887
## [1] "removing: medi_bun_t_monitor"
## [1] 2887
## [1] "removing: medi_bun_t_muscle"
## [1] 2886
## [1] "removing: medi_bun_t_needle"
## [1] 2885
## [1] "removing: medi_bun_t_non-invasive"
## [1] 2885
## [1] "removing: medi_bun_t_non-stress"
## [1] 2885
## [1] "removing: medi_bun_t_normal"
## [1] 2885
## [1] "removing: medi_bun_t_nursing"
## [1] 2885
## [1] "removing: medi_bun_t_nutrition"
## [1] 2884
## [1] "removing: medi_bun_t_observ"
## [1] 2884
## [1] "removing: medi_bun_t_outpatient"
## [1] 2884
## [1] "removing: medi_bun_t_pap"
## [1] 2884
## [1] "removing: medi_bun_t_physical"
## [1] 2884
## [1] "removing: medi_bun_t_portable"
## [1] 2884
## [1] "removing: medi_bun_t_prednisolone"
## [1] 2884
## [1] "removing: medi_bun_t_pressure"
## [1] 2884
## [1] "removing: medi_bun_t_progesterone"
## [1] 2884
## [1] "removing: medi_bun_t_psych"
## [1] 2883
## [1] "removing: medi_bun_t_psychiat"
## [1] 2883
## [1] "removing: medi_bun_t_psycho"
## [1] 2883
## [1] "removing: medi_bun_t_pulmonary"
## [1] 2883
## [1] "removing: medi_bun_t_rabies"
## [1] 2883
## [1] "removing: medi_bun_t_radiation"
## [1] 2883
## [1] "removing: medi_bun_t_radio"
## [1] 2883
## [1] "removing: medi_bun_t_reeval"
## [1] 2883
## [1] "removing: medi_bun_t_rehab"
## [1] 2883
## [1] "removing: medi_bun_t_remove"
## [1] 2883
## [1] "removing: medi_bun_t_rheumatoid"
## [1] 2883
## [1] "removing: medi_bun_t_riv4"
## [1] 2883
## [1] "removing: medi_bun_t_rubella"
## [1] 2883
## [1] "removing: medi_bun_t_saline"
## [1] 2883
## [1] "removing: medi_bun_t_sciatic"
## [1] 2883
## [1] "removing: medi_bun_t_serum"
## [1] 2883
## [1] "removing: medi_bun_t_services"
## [1] 2883
## [1] "removing: medi_bun_t_shave"
## [1] 2883
## [1] "removing: medi_bun_t_simple"
## [1] 2883
## [1] "removing: medi_bun_t_sleep"
## [1] 2883
## [1] "removing: medi_bun_t_smear"
## [1] 2883
## [1] "removing: medi_bun_t_soft"
## [1] 2883
## [1] "removing: medi_bun_t_solution"
## [1] 2883
## [1] "removing: medi_bun_t_sound"
## [1] 2882
## [1] "removing: medi_bun_t_speech"
## [1] 2882
## [1] "removing: medi_bun_t_splint"
## [1] 2882
## [1] "removing: medi_bun_t_stent"
## [1] 2882
## [1] "removing: medi_bun_t_sterile"
## [1] 2882
## [1] "removing: medi_bun_t_stocking"
## [1] 2882
## [1] "removing: medi_bun_t_stone"
## [1] 2882
## [1] "removing: medi_bun_t_stool"
## [1] 2882
## [1] "removing: medi_bun_t_strep"
## [1] 2882
## [1] "removing: medi_bun_t_stress"
## [1] 2882
## [1] "removing: medi_bun_t_substitute"
## [1] 2882
## [1] "removing: medi_bun_t_supplies"
## [1] 2882
## [1] "removing: medi_bun_t_suppls"
## [1] 2882
## [1] "removing: medi_bun_t_support"
## [1] 2882
## [1] "removing: medi_bun_t_susceptible"
## [1] 2882
## [1] "removing: medi_bun_t_swallow"
## [1] 2882
## [1] "removing: medi_bun_t_synth"
## [1] 2882
## [1] "removing: medi_bun_t_syphilis"
## [1] 2882
## [1] "removing: medi_bun_t_syringe"
## [1] 2882
## [1] "removing: medi_bun_t_system"
## [1] 2882
## [1] "removing: medi_bun_t_testing"
## [1] 2882
## [1] "removing: medi_bun_t_tests"
## [1] 2882
## [1] "removing: medi_bun_t_tetanus"
## [1] 2882
## [1] "removing: medi_bun_t_thyroxine"
## [1] 2882
## [1] "removing: medi_bun_t_tobacco"
## [1] 2882
## [1] "removing: medi_bun_t_toe"
## [1] 2882
## [1] "removing: medi_bun_t_tolerance"
## [1] 2882
## [1] "removing: medi_bun_t_topical"
## [1] 2882
## [1] "removing: medi_bun_t_toxin"
## [1] 2882
## [1] "removing: medi_bun_t_trach"
## [1] 2882
## [1] "removing: medi_bun_t_traction"
## [1] 2882
## [1] "removing: medi_bun_t_training"
## [1] 2882
## [1] "removing: medi_bun_t_treat"
## [1] 2882
## [1] "removing: medi_bun_t_typhoid"
## [1] 2882
## [1] "removing: medi_bun_t_ultrasound"
## [1] 2882
## [1] "removing: medi_bun_t_urinalysis"
## [1] 2882
## [1] "removing: medi_bun_t_urinary"
## [1] 2882
## [1] "removing: medi_bun_t_urine"
## [1] 2882
## [1] "removing: medi_bun_t_uterine"
## [1] 2882
## [1] "removing: medi_bun_t_valve"
## [1] 2882
## [1] "removing: medi_bun_t_vein"
## [1] 2882
## [1] "removing: medi_bun_t_visual"
## [1] 2881
## [1] "removing: medi_bun_t_vitamin"
## [1] 2880
## [1] "removing: medi_bun_t_wbc"
## [1] 2880
## [1] "removing: medi_bun_t_wheelchair"
## [1] 2880
## [1] "removing: medi_bun_t_wheezing"
## [1] 2879
## [1] "removing: medi_bun_t_whirlpool"
## [1] 2879
## [1] "removing: medi_bun_t_wire"
## [1] 2879
## [1] "removing: medi_bun_t_without"
## [1] 2879
## [1] "removing: medi_bun_t_wkend"
## [1] 2879
## [1] "removing: medi_bun_t_menb"
## [1] 2879
## [1] "removing: medi_bun_t_xgraft"
## [1] 2879
## [1] "removing: medi_bun_t_pcv13"
## [1] 2879
## [1] "removing: medi_bun_t_var_vaccine_live_subq"
## [1] 2879
## [1] "removing: medi_bun_t_menacwy"
## [1] 2879
## [1] "removing: radi_bun_t_abdom"
## [1] 2879
## [1] "removing: radi_bun_t_adrenal"
## [1] 2879
## [1] "removing: radi_bun_t_angiography"
## [1] 2879
## [1] "removing: radi_bun_t_ankle"
## [1] 2879
## [1] "removing: radi_bun_t_aorta"
## [1] 2879
## [1] "removing: radi_bun_t_area"
## [1] 2879
## [1] "removing: radi_bun_t_arm"
## [1] 2879
## [1] "removing: radi_bun_t_artery"
## [1] 2879
## [1] "removing: radi_bun_t_bile"
## [1] 2879
## [1] "removing: radi_bun_t_bladder"
## [1] 2879
## [1] "removing: radi_bun_t_blade"
## [1] 2879
## [1] "removing: radi_bun_t_blockage"
## [1] 2879
## [1] "removing: radi_bun_t_body"
## [1] 2879
## [1] "removing: radi_bun_t_brain"
## [1] 2878
## [1] "removing: radi_bun_t_cardiac"
## [1] 2878
## [1] "removing: radi_bun_t_cast"
## [1] 2878
## [1] "removing: radi_bun_t_complex"
## [1] 2878
## [1] "removing: radi_bun_t_contrast"
## [1] 2878
## [1] "removing: radi_bun_t_cranial"
## [1] 2878
## [1] "removing: radi_bun_t_ct"
## [1] 2877
## [1] "removing: radi_bun_t_ct_scan"
## [1] 2877
## [1] "removing: radi_bun_t_delivery"
## [1] 2876
## [1] "removing: radi_bun_t_diagnostic"
## [1] 2876
## [1] "removing: radi_bun_t_dislocation"
## [1] 2876
## [1] "removing: radi_bun_t_duct"
## [1] 2876
## [1] "removing: radi_bun_t_echo"
## [1] 2876
## [1] "removing: radi_bun_t_elbow"
## [1] 2876
## [1] "removing: radi_bun_t_epidurograpy"
## [1] 2876
## [1] "removing: radi_bun_t_evaluation"
## [1] 2876
## [1] "removing: radi_bun_t_eye"
## [1] 2876
## [1] "removing: radi_bun_t_femur"
## [1] 2876
## [1] "removing: radi_bun_t_fetal"
## [1] 2876
## [1] "removing: radi_bun_t_finger"
## [1] 2875
## [1] "removing: radi_bun_t_fistula"
## [1] 2875
## [1] "removing: radi_bun_t_fluoroscopy"
## [1] 2875
## [1] "removing: radi_bun_t_fmri"
## [1] 2875
## [1] "removing: radi_bun_t_foot"
## [1] 2874
## [1] "removing: radi_bun_t_forearm"
## [1] 2874
## [1] "removing: radi_bun_t_fracture"
## [1] 2874
## [1] "removing: radi_bun_t_gadobutrol"
## [1] 2874
## [1] "removing: radi_bun_t_gastric"
## [1] 2874
## [1] "removing: radi_bun_t_general"
## [1] 2874
## [1] "removing: radi_bun_t_gential"
## [1] 2874
## [1] "removing: radi_bun_t_gestation"
## [1] 2874
## [1] "removing: radi_bun_t_gi_tract"
## [1] 2874
## [1] "removing: radi_bun_t_glands"
## [1] 2874
## [1] "removing: radi_bun_t_guide"
## [1] 2874
## [1] "removing: radi_bun_t_hand"
## [1] 2873
## [1] "removing: radi_bun_t_head"
## [1] 2872
## [1] "removing: radi_bun_t_heart"
## [1] 2872
## [1] "removing: radi_bun_t_heel"
## [1] 2872
## [1] "removing: radi_bun_t_humerus"
## [1] 2872
## [1] "removing: radi_bun_t_hyperthermia"
## [1] 2872
## [1] "removing: radi_bun_t_imag"
## [1] 2871
## [1] "removing: radi_bun_t_image"
## [1] 2871
## [1] "removing: radi_bun_t_imaging"
## [1] 2871
## [1] "removing: radi_bun_t_infant"
## [1] 2871
## [1] "removing: radi_bun_t_interpret"
## [1] 2871
## [1] "removing: radi_bun_t_jaw"
## [1] 2871
## [1] "removing: radi_bun_t_kidney"
## [1] 2871
## [1] "removing: radi_bun_t_leg"
## [1] 2870
## [1] "removing: radi_bun_t_lesion"
## [1] 2870
## [1] "removing: radi_bun_t_liver"
## [1] 2870
## [1] "removing: radi_bun_t_lower"
## [1] 2870
## [1] "removing: radi_bun_t_lung"
## [1] 2870
## [1] "removing: radi_bun_t_mammogra"
## [1] 2870
## [1] "removing: radi_bun_t_management"
## [1] 2870
## [1] "removing: radi_bun_t_marrow"
## [1] 2870
## [1] "removing: radi_bun_t_mastoids"
## [1] 2870
## [1] "removing: radi_bun_t_mra"
## [1] 2870
## [1] "removing: radi_bun_t_myelography"
## [1] 2870
## [1] "removing: radi_bun_t_neck"
## [1] 2870
## [1] "removing: radi_bun_t_nuclear"
## [1] 2870
## [1] "removing: radi_bun_t_oncology"
## [1] 2870
## [1] "removing: radi_bun_t_pancreas"
## [1] 2870
## [1] "removing: radi_bun_t_pelvi"
## [1] 2869
## [1] "removing: radi_bun_t_penis"
## [1] 2869
## [1] "removing: radi_bun_t_pet"
## [1] 2869
## [1] "removing: radi_bun_t_pituitary"
## [1] 2869
## [1] "removing: radi_bun_t_plan"
## [1] 2869
## [1] "removing: radi_bun_t_plasma"
## [1] 2869
## [1] "removing: radi_bun_t_radiation"
## [1] 2869
## [1] "removing: radi_bun_t_radio"
## [1] 2869
## [1] "removing: radi_bun_t_repair"
## [1] 2869
## [1] "removing: radi_bun_t_rib"
## [1] 2868
## [1] "removing: radi_bun_t_scan"
## [1] 2868
## [1] "removing: radi_bun_t_sinuses"
## [1] 2868
## [1] "removing: radi_bun_t_skull"
## [1] 2867
## [1] "removing: radi_bun_t_socket"
## [1] 2867
## [1] "removing: radi_bun_t_speech"
## [1] 2867
## [1] "removing: radi_bun_t_spleen"
## [1] 2867
## [1] "removing: radi_bun_t_tear"
## [1] 2867
## [1] "removing: radi_bun_t_teeth"
## [1] 2867
## [1] "removing: radi_bun_t_therapy"
## [1] 2867
## [1] "removing: radi_bun_t_thigh"
## [1] 2867
## [1] "removing: radi_bun_t_thorac"
## [1] 2867
## [1] "removing: radi_bun_t_thorax"
## [1] 2867
## [1] "removing: radi_bun_t_throat"
## [1] 2867
## [1] "removing: radi_bun_t_thrombosis"
## [1] 2867
## [1] "removing: radi_bun_t_thyroid"
## [1] 2867
## [1] "removing: radi_bun_t_toe"
## [1] 2867
## [1] "removing: radi_bun_t_tract"
## [1] 2867
## [1] "removing: radi_bun_t_treatment"
## [1] 2867
## [1] "removing: radi_bun_t_trunk"
## [1] 2867
## [1] "removing: radi_bun_t_tumor"
## [1] 2867
## [1] "removing: radi_bun_t_upper"
## [1] 2867
## [1] "removing: radi_bun_t_urethra"
## [1] 2867
## [1] "removing: radi_bun_t_urinary"
## [1] 2867
## [1] "removing: radi_bun_t_vein"
## [1] 2867
## [1] "removing: radi_bun_t_ventilation"
## [1] 2867
## [1] "removing: radi_bun_t_veous"
## [1] 2867
## [1] "removing: radi_bun_t_vessel"
## [1] 2867
## [1] "removing: radi_bun_t_wrist"
## [1] 2867
## [1] "removing: radi_bun_t_with_dye"
## [1] 2867
## [1] "removing: radi_bun_t_xray"
## [1] 2867
## [1] "removing: radi_bun_t_xtremity"
## [1] 2867
## [1] "removing: path_bun_t_acet"
## [1] 2867
## [1] "removing: path_bun_t_acute"
## [1] 2867
## [1] "removing: path_bun_t_alkaline"
## [1] 2867
## [1] "removing: path_bun_t_allerg"
## [1] 2867
## [1] "removing: path_bun_t_amikacin"
## [1] 2867
## [1] "removing: path_bun_t_amino"
## [1] 2867
## [1] "removing: path_bun_t_amitripytline"
## [1] 2867
## [1] "removing: path_bun_t_ammonia"
## [1] 2867
## [1] "removing: path_bun_t_amniotic"
## [1] 2867
## [1] "removing: path_bun_t_anabolic"
## [1] 2867
## [1] "removing: path_bun_t_analgesics"
## [1] 2867
## [1] "removing: path_bun_t_analysis"
## [1] 2867
## [1] "removing: path_bun_t_antidepressant"
## [1] 2867
## [1] "removing: path_bun_t_antiepileptics"
## [1] 2867
## [1] "removing: path_bun_t_antipsychotic"
## [1] 2867
## [1] "removing: path_bun_t_aortic"
## [1] 2867
## [1] "removing: path_bun_t_autopsy"
## [1] 2867
## [1] "removing: path_bun_t_bact"
## [1] 2867
## [1] "removing: path_bun_t_bacteria"
## [1] 2867
## [1] "removing: path_bun_t_barbiturate"
## [1] 2867
## [1] "removing: path_bun_t_benzo"
## [1] 2867
## [1] "removing: path_bun_t_bile"
## [1] 2867
## [1] "removing: path_bun_t_bilirubin"
## [1] 2866
## [1] "removing: path_bun_t_biopsy"
## [1] 2866
## [1] "removing: path_bun_t_bleeding"
## [1] 2866
## [1] "removing: path_bun_t_cadmium"
## [1] 2866
## [1] "removing: path_bun_t_calcium"
## [1] 2866
## [1] "removing: path_bun_t_cannabinoids"
## [1] 2866
## [1] "removing: path_bun_t_carbamazepine"
## [1] 2866
## [1] "removing: path_bun_t_carbon"
## [1] 2866
## [1] "removing: path_bun_t_catecholamine"
## [1] 2866
## [1] "removing: path_bun_t_chlamydia"
## [1] 2866
## [1] "removing: path_bun_t_chloride"
## [1] 2866
## [1] "removing: path_bun_t_chromosome"
## [1] 2866
## [1] "removing: path_bun_t_chromotograph"
## [1] 2866
## [1] "removing: path_bun_t_class"
## [1] 2866
## [1] "removing: path_bun_t_clot"
## [1] 2866
## [1] "removing: path_bun_t_clozapine"
## [1] 2866
## [1] "removing: path_bun_t_coagulation"
## [1] 2866
## [1] "removing: path_bun_t_cocaine"
## [1] 2866
## [1] "removing: path_bun_t_colon"
## [1] 2866
## [1] "removing: path_bun_t_count"
## [1] 2866
## [1] "removing: path_bun_t_cpk"
## [1] 2865
## [1] "removing: path_bun_t_cryopreservd"
## [1] 2865
## [1] "removing: path_bun_t_cyanide"
## [1] 2865
## [1] "removing: path_bun_t_cystines"
## [1] 2865
## [1] "removing: path_bun_t_cytopath"
## [1] 2865
## [1] "removing: path_bun_t_cytopathol"
## [1] 2865
## [1] "removing: path_bun_t_desipramine"
## [1] 2865
## [1] "removing: path_bun_t_digoxin"
## [1] 2865
## [1] "removing: path_bun_t_dihydro"
## [1] 2865
## [1] "removing: path_bun_t_dilation"
## [1] 2865
## [1] "removing: path_bun_t_dioxide"
## [1] 2865
## [1] "removing: path_bun_t_dipropylacetic"
## [1] 2865
## [1] "removing: path_bun_t_disease"
## [1] 2865
## [1] "removing: path_bun_t_draw"
## [1] 2865
## [1] "removing: path_bun_t_dysfunction"
## [1] 2865
## [1] "removing: path_bun_t_embryo"
## [1] 2865
## [1] "removing: path_bun_t_encephalitis"
## [1] 2865
## [1] "removing: path_bun_t_endocrine"
## [1] 2865
## [1] "removing: path_bun_t_epstein-barr"
## [1] 2865
## [1] "removing: path_bun_t_estrogen"
## [1] 2865
## [1] "removing: path_bun_t_ethanol"
## [1] 2865
## [1] "removing: path_bun_t_evaluation"
## [1] 2865
## [1] "removing: path_bun_t_factor"
## [1] 2865
## [1] "removing: path_bun_t_fecal"
## [1] 2865
## [1] "removing: path_bun_t_fentanyl"
## [1] 2865
## [1] "removing: path_bun_t_fetal"
## [1] 2865
## [1] "removing: path_bun_t_fibrinogen"
## [1] 2865
## [1] "removing: path_bun_t_fibronlytic"
## [1] 2865
## [1] "removing: path_bun_t_flouride"
## [1] 2865
## [1] "removing: path_bun_t_galacto"
## [1] 2865
## [1] "removing: path_bun_t_gases"
## [1] 2864
## [1] "removing: path_bun_t_gastrin"
## [1] 2864
## [1] "removing: path_bun_t_genome"
## [1] 2864
## [1] "removing: path_bun_t_genotpying"
## [1] 2864
## [1] "removing: path_bun_t_giardia"
## [1] 2864
## [1] "removing: path_bun_t_glucagon"
## [1] 2864
## [1] "removing: path_bun_t_gonorr"
## [1] 2864
## [1] "removing: path_bun_t_growth"
## [1] 2864
## [1] "removing: path_bun_t_gynecologic"
## [1] 2864
## [1] "removing: path_bun_t_haloperidol"
## [1] 2864
## [1] "removing: path_bun_t_hearing"
## [1] 2864
## [1] "removing: path_bun_t_heavy"
## [1] 2864
## [1] "removing: path_bun_t_heinz"
## [1] 2864
## [1] "removing: path_bun_t_hematocrit"
## [1] 2863
## [1] "removing: path_bun_t_heridatary"
## [1] 2863
## [1] "removing: path_bun_t_heroin"
## [1] 2863
## [1] "removing: path_bun_t_herpes"
## [1] 2863
## [1] "removing: path_bun_t_hiv"
## [1] 2862
## [1] "removing: path_bun_t_hold"
## [1] 2862
## [1] "removing: path_bun_t_hpa"
## [1] 2862
## [1] "removing: path_bun_t_hsv"
## [1] 2862
## [1] "removing: path_bun_t_imipramine"
## [1] 2862
## [1] "removing: path_bun_t_immunoassay"
## [1] 2862
## [1] "removing: path_bun_t_influenza"
## [1] 2862
## [1] "removing: path_bun_t_insulin"
## [1] 2862
## [1] "removing: path_bun_t_iodine"
## [1] 2862
## [1] "removing: path_bun_t_lab"
## [1] 2862
## [1] "removing: path_bun_t_lamotrigine"
## [1] 2862
## [1] "removing: path_bun_t_levetiracetam"
## [1] 2862
## [1] "removing: path_bun_t_lidocaine"
## [1] 2862
## [1] "removing: path_bun_t_lithium"
## [1] 2862
## [1] "removing: path_bun_t_loss"
## [1] 2862
## [1] "removing: path_bun_t_low"
## [1] 2862
## [1] "removing: path_bun_t_lung"
## [1] 2862
## [1] "removing: path_bun_t_lyme"
## [1] 2862
## [1] "removing: path_bun_t_lympg"
## [1] 2862
## [1] "removing: path_bun_t_malaria"
## [1] 2862
## [1] "removing: path_bun_t_mercury"
## [1] 2862
## [1] "removing: path_bun_t_metal"
## [1] 2862
## [1] "removing: path_bun_t_microbe"
## [1] 2861
## [1] "removing: path_bun_t_microscop"
## [1] 2860
## [1] "removing: path_bun_t_microscopic"
## [1] 2860
## [1] "removing: path_bun_t_microscopy"
## [1] 2860
## [1] "removing: path_bun_t_mitocondrial"
## [1] 2860
## [1] "removing: path_bun_t_mopath"
## [1] 2860
## [1] "removing: path_bun_t_mumps"
## [1] 2860
## [1] "removing: path_bun_t_mycophenolate"
## [1] 2860
## [1] "removing: path_bun_t_nicotine"
## [1] 2860
## [1] "removing: path_bun_t_nile"
## [1] 2860
## [1] "removing: path_bun_t_non-opioid"
## [1] 2860
## [1] "removing: path_bun_t_nonantibody"
## [1] 2860
## [1] "removing: path_bun_t_nucleic"
## [1] 2860
## [1] "removing: path_bun_t_obstretric"
## [1] 2860
## [1] "removing: path_bun_t_occult"
## [1] 2860
## [1] "removing: path_bun_t_onco"
## [1] 2860
## [1] "removing: path_bun_t_oocyte"
## [1] 2860
## [1] "removing: path_bun_t_opioid"
## [1] 2860
## [1] "removing: path_bun_t_ovulation"
## [1] 2860
## [1] "removing: path_bun_t_oxycodone"
## [1] 2860
## [1] "removing: path_bun_t_paper"
## [1] 2860
## [1] "removing: path_bun_t_period"
## [1] 2860
## [1] "removing: path_bun_t_phenobarbital"
## [1] 2860
## [1] "removing: path_bun_t_phenytoin"
## [1] 2860
## [1] "removing: path_bun_t_phosphatase"
## [1] 2860
## [1] "removing: path_bun_t_pituitary"
## [1] 2860
## [1] "removing: path_bun_t_plasminogen"
## [1] 2860
## [1] "removing: path_bun_t_poliovirus"
## [1] 2860
## [1] "removing: path_bun_t_pregabalin"
## [1] 2860
## [1] "removing: path_bun_t_primidone"
## [1] 2860
## [1] "removing: path_bun_t_procainamide"
## [1] 2860
## [1] "removing: path_bun_t_procedure"
## [1] 2860
## [1] "removing: path_bun_t_progesterone"
## [1] 2859
## [1] "removing: path_bun_t_prophobulinogen"
## [1] 2859
## [1] "removing: path_bun_t_prophyrins"
## [1] 2859
## [1] "removing: path_bun_t_propoxyphene"
## [1] 2859
## [1] "removing: path_bun_t_prostate"
## [1] 2859
## [1] "removing: path_bun_t_quinide"
## [1] 2859
## [1] "removing: path_bun_t_quinine"
## [1] 2859
## [1] "removing: path_bun_t_reagent"
## [1] 2859
## [1] "removing: path_bun_t_renin"
## [1] 2859
## [1] "removing: path_bun_t_retinal"
## [1] 2859
## [1] "removing: path_bun_t_rickettsia"
## [1] 2859
## [1] "removing: path_bun_t_rotovirus"
## [1] 2859
## [1] "removing: path_bun_t_rubella"
## [1] 2858
## [1] "removing: path_bun_t_salicylate"
## [1] 2858
## [1] "removing: path_bun_t_salmonella"
## [1] 2858
## [1] "removing: path_bun_t_scan"
## [1] 2858
## [1] "removing: path_bun_t_sedative"
## [1] 2858
## [1] "removing: path_bun_t_semen"
## [1] 2858
## [1] "removing: path_bun_t_sequence"
## [1] 2858
## [1] "removing: path_bun_t_serotonin"
## [1] 2858
## [1] "removing: path_bun_t_silica"
## [1] 2858
## [1] "removing: path_bun_t_sirolimus"
## [1] 2858
## [1] "removing: path_bun_t_skin"
## [1] 2858
## [1] "removing: path_bun_t_slenium"
## [1] 2858
## [1] "removing: path_bun_t_smear"
## [1] 2858
## [1] "removing: path_bun_t_specimen"
## [1] 2858
## [1] "removing: path_bun_t_sperm"
## [1] 2858
## [1] "removing: path_bun_t_steroid"
## [1] 2858
## [1] "removing: path_bun_t_stimulation"
## [1] 2858
## [1] "removing: path_bun_t_strep"
## [1] 2858
## [1] "removing: path_bun_t_syphilis"
## [1] 2858
## [1] "removing: path_bun_t_syringe"
## [1] 2858
## [1] "removing: path_bun_t_tacrolims"
## [1] 2858
## [1] "removing: path_bun_t_thawing"
## [1] 2858
## [1] "removing: path_bun_t_theophylline"
## [1] 2858
## [1] "removing: path_bun_t_tobramycin"
## [1] 2858
## [1] "removing: path_bun_t_tolerance"
## [1] 2858
## [1] "removing: path_bun_t_toxoplasma"
## [1] 2858
## [1] "removing: path_bun_t_tpiramate"
## [1] 2858
## [1] "removing: path_bun_t_transfusion"
## [1] 2858
## [1] "removing: path_bun_t_tumor"
## [1] 2857
## [1] "removing: path_bun_t_vancomycin"
## [1] 2857
## [1] "removing: path_bun_t_vein"
## [1] 2857
## [1] "removing: path_bun_t_venipuncture"
## [1] 2857
## [1] "removing: path_bun_t_virus"
## [1] 2857
## [1] "removing: path_bun_t_west"
## [1] 2857
## [1] "removing: path_bun_t_with_scope"
## [1] 2857
## [1] "removing: path_bun_t_zonisamide"
## [1] 2857
## [1] "removing: anes_bun_t_abdom"
## [1] 2857
## [1] "removing: anes_bun_t_add - on"
## [1] 2857
## [1] "removing: anes_bun_t_adrenal"
## [1] 2857
## [1] "removing: anes_bun_t_amputation"
## [1] 2857
## [1] "removing: anes_bun_t_analg"
## [1] 2857
## [1] "removing: anes_bun_t_area"
## [1] 2857
## [1] "removing: anes_bun_t_arest"
## [1] 2857
## [1] "removing: anes_bun_t_arteriography"
## [1] 2857
## [1] "removing: anes_bun_t_artery"
## [1] 2857
## [1] "removing: anes_bun_t_biopsy"
## [1] 2857
## [1] "removing: anes_bun_t_bladder"
## [1] 2857
## [1] "removing: anes_bun_t_blood"
## [1] 2857
## [1] "removing: anes_bun_t_bone"
## [1] 2857
## [1] "removing: anes_bun_t_bronchi"
## [1] 2857
## [1] "removing: anes_bun_t_burn"
## [1] 2857
## [1] "removing: anes_bun_t_casting"
## [1] 2857
## [1] "removing: anes_bun_t_cervix"
## [1] 2857
## [1] "removing: anes_bun_t_chemonucleolysis"
## [1] 2857
## [1] "removing: anes_bun_t_chest"
## [1] 2857
## [1] "removing: anes_bun_t_cleft"
## [1] 2857
## [1] "removing: anes_bun_t_cord"
## [1] 2857
## [1] "removing: anes_bun_t_corneal"
## [1] 2857
## [1] "removing: anes_bun_t_cs"
## [1] 2857
## [1] "removing: anes_bun_t_debride"
## [1] 2857
## [1] "removing: anes_bun_t_deliver"
## [1] 2857
## [1] "removing: anes_bun_t_drainage"
## [1] 2857
## [1] "removing: anes_bun_t_duct"
## [1] 2857
## [1] "removing: anes_bun_t_ear"
## [1] 2856
## [1] "removing: anes_bun_t_elbow"
## [1] 2856
## [1] "removing: anes_bun_t_electroshock"
## [1] 2856
## [1] "removing: anes_bun_t_embolectomy"
## [1] 2856
## [1] "removing: anes_bun_t_endoscopy"
## [1] 2856
## [1] "removing: anes_bun_t_epidural"
## [1] 2856
## [1] "removing: anes_bun_t_esophag"
## [1] 2856
## [1] "removing: anes_bun_t_facial"
## [1] 2856
## [1] "removing: anes_bun_t_fat"
## [1] 2856
## [1] "removing: anes_bun_t_femoral"
## [1] 2856
## [1] "removing: anes_bun_t_fentanyl"
## [1] 2856
## [1] "removing: anes_bun_t_glands"
## [1] 2856
## [1] "removing: anes_bun_t_hernia"
## [1] 2856
## [1] "removing: anes_bun_t_humer"
## [1] 2855
## [1] "removing: anes_bun_t_hydromorphone"
## [1] 2855
## [1] "removing: anes_bun_t_hysterectomy"
## [1] 2855
## [1] "removing: anes_bun_t_image"
## [1] 2855
## [1] "removing: anes_bun_t_insertion"
## [1] 2855
## [1] "removing: anes_bun_t_intracranial"
## [1] 2855
## [1] "removing: anes_bun_t_iredectomy"
## [1] 2855
## [1] "removing: anes_bun_t_joint"
## [1] 2855
## [1] "removing: anes_bun_t_ketorolac"
## [1] 2855
## [1] "removing: anes_bun_t_kidney"
## [1] 2855
## [1] "removing: anes_bun_t_knee"
## [1] 2855
## [1] "removing: anes_bun_t_larynx"
## [1] 2855
## [1] "removing: anes_bun_t_layer"
## [1] 2855
## [1] "removing: anes_bun_t_leg"
## [1] 2854
## [1] "removing: anes_bun_t_lip"
## [1] 2854
## [1] "removing: anes_bun_t_liver"
## [1] 2854
## [1] "removing: anes_bun_t_local"
## [1] 2854
## [1] "removing: anes_bun_t_lower"
## [1] 2854
## [1] "removing: anes_bun_t_lumbar"
## [1] 2854
## [1] "removing: anes_bun_t_lung"
## [1] 2854
## [1] "removing: anes_bun_t_major"
## [1] 2854
## [1] "removing: anes_bun_t_manipulation"
## [1] 2854
## [1] "removing: anes_bun_t_midazolam"
## [1] 2854
## [1] "removing: anes_bun_t_nerve"
## [1] 2854
## [1] "removing: anes_bun_t_open"
## [1] 2854
## [1] "removing: anes_bun_t_organ"
## [1] 2853
## [1] "removing: anes_bun_t_pacemaker"
## [1] 2853
## [1] "removing: anes_bun_t_palate"
## [1] 2853
## [1] "removing: anes_bun_t_pelvic"
## [1] 2852
## [1] "removing: anes_bun_t_pelvis"
## [1] 2852
## [1] "removing: anes_bun_t_penis"
## [1] 2852
## [1] "removing: anes_bun_t_percutaneous"
## [1] 2852
## [1] "removing: anes_bun_t_propofol"
## [1] 2852
## [1] "removing: anes_bun_t_prostate"
## [1] 2852
## [1] "removing: anes_bun_t_pump"
## [1] 2852
## [1] "removing: anes_bun_t_puncture"
## [1] 2852
## [1] "removing: anes_bun_t_radical"
## [1] 2852
## [1] "removing: anes_bun_t_release"
## [1] 2852
## [1] "removing: anes_bun_t_repair"
## [1] 2852
## [1] "removing: anes_bun_t_replace"
## [1] 2852
## [1] "removing: anes_bun_t_rib"
## [1] 2852
## [1] "removing: anes_bun_t_sedation"
## [1] 2852
## [1] "removing: anes_bun_t_shoulder"
## [1] 2852
## [1] "removing: anes_bun_t_skull"
## [1] 2852
## [1] "removing: anes_bun_t_sperm"
## [1] 2852
## [1] "removing: anes_bun_t_spine"
## [1] 2852
## [1] "removing: anes_bun_t_spit"
## [1] 2852
## [1] "removing: anes_bun_t_sternal"
## [1] 2852
## [1] "removing: anes_bun_t_stone"
## [1] 2852
## [1] "removing: anes_bun_t_tendon"
## [1] 2852
## [1] "removing: anes_bun_t_testis"
## [1] 2852
## [1] "removing: anes_bun_t_thigh"
## [1] 2852
## [1] "removing: anes_bun_t_thyriod"
## [1] 2852
## [1] "removing: anes_bun_t_trachea"
## [1] 2852
## [1] "removing: anes_bun_t_transplant"
## [1] 2852
## [1] "removing: anes_bun_t_tromethamine"
## [1] 2852
## [1] "removing: anes_bun_t_tubal"
## [1] 2852
## [1] "removing: anes_bun_t_tympanotomy"
## [1] 2852
## [1] "removing: anes_bun_t_upper"
## [1] 2852
## [1] "removing: anes_bun_t_ureter"
## [1] 2852
## [1] "removing: anes_bun_t_urethra"
## [1] 2852
## [1] "removing: anes_bun_t_vag"
## [1] 2852
## [1] "removing: anes_bun_t_vein"
## [1] 2852
## [1] "removing: anes_bun_t_ventilation"
## [1] 2852
## [1] "removing: anes_bun_t_vesectomy"
## [1] 2852
## [1] "removing: anes_bun_t_vessel"
## [1] 2852
## [1] "removing: anes_bun_t_viteroretinal"
## [1] 2852
## [1] "removing: anes_bun_t_wall"
## [1] 2852
## [1] "removing: anes_bun_t_wrist"
## [1] 2852
## [1] "removing: faci_bun_t_advanced"
## [1] 2852
## [1] "removing: faci_bun_t_analysis"
## [1] 2852
## [1] "removing: faci_bun_t_annual"
## [1] 2852
## [1] "removing: faci_bun_t_assessmnt"
## [1] 2852
## [1] "removing: faci_bun_t_audit"
## [1] 2852
## [1] "removing: faci_bun_t_basic"
## [1] 2852
## [1] "removing: faci_bun_t_behav"
## [1] 2852
## [1] "removing: faci_bun_t_bus"
## [1] 2852
## [1] "removing: faci_bun_t_chng"
## [1] 2852
## [1] "removing: faci_bun_t_computer"
## [1] 2852
## [1] "removing: faci_bun_t_conf"
## [1] 2852
## [1] "removing: faci_bun_t_consultation"
## [1] 2852
## [1] "removing: faci_bun_t_counseling"
## [1] 2852
## [1] "removing: faci_bun_t_critical"
## [1] 2852
## [1] "removing: faci_bun_t_data"
## [1] 2852
## [1] "removing: faci_bun_t_direct"
## [1] 2852
## [1] "removing: faci_bun_t_disability"
## [1] 2852
## [1] "removing: faci_bun_t_discharge"
## [1] 2851
## [1] "removing: faci_bun_t_dommicl"
## [1] 2851
## [1] "removing: faci_bun_t_exam"
## [1] 2851
## [1] "removing: faci_bun_t_fac"
## [1] 2851
## [1] "removing: faci_bun_t_facility"
## [1] 2851
## [1] "removing: faci_bun_t_follow-up"
## [1] 2850
## [1] "removing: faci_bun_t_handling"
## [1] 2850
## [1] "removing: faci_bun_t_hospice"
## [1] 2850
## [1] "removing: faci_bun_t_hospital"
## [1] 2850
## [1] "removing: faci_bun_t_initial"
## [1] 2850
## [1] "removing: faci_bun_t_inpatient"
## [1] 2850
## [1] "removing: faci_bun_t_interfacility"
## [1] 2850
## [1] "removing: faci_bun_t_interpof"
## [1] 2850
## [1] "removing: faci_bun_t_lab"
## [1] 2850
## [1] "removing: faci_bun_t_life"
## [1] 2850
## [1] "removing: faci_bun_t_nonemergency"
## [1] 2850
## [1] "removing: faci_bun_t_noner"
## [1] 2850
## [1] "removing: faci_bun_t_nursing"
## [1] 2850
## [1] "removing: faci_bun_t_observation"
## [1] 2850
## [1] "removing: faci_bun_t_on_call"
## [1] 2850
## [1] "removing: faci_bun_t_online"
## [1] 2850
## [1] "removing: faci_bun_t_phlebotomy"
## [1] 2850
## [1] "removing: faci_bun_t_phone"
## [1] 2850
## [1] "removing: faci_bun_t_physician"
## [1] 2850
## [1] "removing: faci_bun_t_postop"
## [1] 2850
## [1] "removing: faci_bun_t_preventine"
## [1] 2850
## [1] "removing: faci_bun_t_prolong"
## [1] 2850
## [1] "removing: faci_bun_t_service"
## [1] 2850
## [1] "removing: faci_bun_t_smoking"
## [1] 2850
## [1] "removing: faci_bun_t_specimen"
## [1] 2850
## [1] "removing: faci_bun_t_standby"
## [1] 2850
## [1] "removing: faci_bun_t_subsequent"
## [1] 2850
## [1] "removing: faci_bun_t_support"
## [1] 2850
## [1] "removing: faci_bun_t_taxi"
## [1] 2850
## [1] "removing: faci_bun_t_team"
## [1] 2850
## [1] "removing: faci_bun_t_transort"
## [1] 2850
## [1] "removing: faci_bun_t_travel"
## [1] 2850
## [1] "removing: faci_bun_t_van"
## [1] 2850
skin_clean %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

skin_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 202 x 2
##    name               correlation
##    <chr>                    <dbl>
##  1 anes_bun_t_anes          0.736
##  2 anes_bun_t_anesth        0.736
##  3 medi_bun_t_sodium        0.671
##  4 medi_bun_t_inject        0.666
##  5 anes_bun_t_head          0.560
##  6 anes_bun_t_neck          0.560
##  7 medi_bun_t_choline       0.484
##  8 surg_bun_t_prep          0.324
##  9 surg_bun_t_wound         0.324
## 10 surg_bun_t_graft         0.295
## # ... with 192 more rows
skin_clean %>% get_tag_density_information("anes_bun_t_anes") %>% 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 ~ anes_bun_t_anes"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 753
## $dist_plots

## 
## $stat_tables

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

skin_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 161 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 surg_bun_t_mohs              0.280
##  2 medi_bun_t_inject            0.257
##  3 surg_bun_t_exc               0.211
##  4 path_bun_t_patho             0.159
##  5 path_bun_t_pathologist       0.159
##  6 path_bun_t_tissue            0.159
##  7 medi_bun_t_visit             0.142
##  8 path_bun_t_immuno            0.141
##  9 path_bun_t_immunohisto       0.141
## 10 surg_bun_t_body              0.141
## # ... with 151 more rows
skin_clean %>% get_tag_density_information("surg_bun_t_mohs") %>% 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 ~ surg_bun_t_mohs"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 157
## $dist_plots

## 
## $stat_tables

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

skin_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 160 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 medi_bun_t_inject            0.273
##  2 surg_bun_t_exc               0.215
##  3 path_bun_t_patho             0.172
##  4 path_bun_t_pathologist       0.172
##  5 path_bun_t_tissue            0.172
##  6 path_bun_t_immuno            0.152
##  7 path_bun_t_immunohisto       0.152
##  8 medi_bun_t_visit             0.144
##  9 surg_bun_t_body              0.143
## 10 path_bun_t_panel             0.136
## # ... with 150 more rows
skin_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 490
## $dist_plots

## 
## $stat_tables

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

skin_clean %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 149 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 surg_bun_t_exc               0.249
##  2 path_bun_t_patho             0.207
##  3 path_bun_t_pathologist       0.207
##  4 path_bun_t_tissue            0.207
##  5 path_bun_t_immuno            0.178
##  6 path_bun_t_immunohisto       0.178
##  7 medi_bun_t_visit             0.169
##  8 surg_bun_t_body              0.168
##  9 path_bun_t_protein           0.149
## 10 medi_bun_t_flu               0.136
## # ... with 139 more rows
skin_clean %>% get_tag_density_information("path_bun_t_patho") %>% 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 ~ path_bun_t_patho"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 54.4
## $dist_plots

## 
## $stat_tables

skin_clean_n_path <- skin_clean[path_bun_t_patho==F]
skin_clean_w_path <- skin_clean[path_bun_t_patho==T]
skin_clean_w_path %>% plot_med_density() %>% print()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 126 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 path_bun_t_protein          0.202 
##  2 path_bun_t_immuno           0.172 
##  3 path_bun_t_immunohisto      0.172 
##  4 path_bun_t_test             0.13  
##  5 surg_bun_t_skin             0.110 
##  6 surg_bun_t_destruction      0.109 
##  7 medi_bun_t_hearing          0.102 
##  8 medi_bun_t_oral             0.0926
##  9 surg_bun_t_b9               0.0824
## 10 surg_bun_t_lesion           0.0804
## # ... with 116 more rows
skin_clean_w_path %>% get_tag_density_information("path_bun_t_protein") %>% 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 ~ path_bun_t_protein"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 601
## $dist_plots

## 
## $stat_tables

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

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 122 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 path_bun_t_immuno           0.177 
##  2 path_bun_t_immunohisto      0.177 
##  3 surg_bun_t_destruction      0.112 
##  4 surg_bun_t_skin             0.109 
##  5 medi_bun_t_hearing          0.106 
##  6 medi_bun_t_oral             0.0965
##  7 surg_bun_t_b9               0.0871
##  8 surg_bun_t_lesion           0.0838
##  9 radi_bun_t_joint            0.0768
## 10 radi_bun_t_shoulder         0.0768
## # ... with 112 more rows
skin_clean_w_path %>% get_tag_density_information("path_bun_t_immuno") %>% 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 ~ path_bun_t_immuno"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 83.4
## $dist_plots

## 
## $stat_tables

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

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 117 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 surg_bun_t_destruction      0.121 
##  2 surg_bun_t_skin             0.116 
##  3 medi_bun_t_hearing          0.115 
##  4 medi_bun_t_oral             0.104 
##  5 surg_bun_t_lesion           0.0958
##  6 radi_bun_t_joint            0.0829
##  7 radi_bun_t_mri              0.0829
##  8 radi_bun_t_shoulder         0.0829
##  9 radi_bun_t_without_dye      0.0829
## 10 surg_bun_t_b9               0.0791
## # ... with 107 more rows
skin_clean_w_path %>% get_tag_density_information("surg_bun_t_destruction") %>% 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 ~ surg_bun_t_destruction"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 60.7
## $dist_plots

## 
## $stat_tables

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

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 110 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 medi_bun_t_hearing          0.119 
##  2 medi_bun_t_oral             0.108 
##  3 radi_bun_t_joint            0.0858
##  4 radi_bun_t_mri              0.0858
##  5 radi_bun_t_shoulder         0.0858
##  6 radi_bun_t_without_dye      0.0858
##  7 surg_bun_t_b9               0.0796
##  8 faci_bun_t_dept             0.0766
##  9 faci_bun_t_emergency        0.0766
## 10 medi_bun_t_dialys           0.0647
## # ... with 100 more rows
skin_clean_w_path %>% get_tag_density_information("medi_bun_t_hearing") %>% 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_hearing"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 276
## $dist_plots

## 
## $stat_tables

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

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 109 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 medi_bun_t_oral             0.109 
##  2 radi_bun_t_joint            0.0867
##  3 radi_bun_t_mri              0.0867
##  4 radi_bun_t_shoulder         0.0867
##  5 radi_bun_t_without_dye      0.0867
##  6 surg_bun_t_b9               0.0811
##  7 faci_bun_t_dept             0.0775
##  8 faci_bun_t_emergency        0.0775
##  9 medi_bun_t_dialys           0.0655
## 10 radi_bun_t_exam             0.059 
## # ... with 99 more rows
skin_clean_w_path %>% get_tag_density_information("medi_bun_t_oral") %>% 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_oral"
## Warning in leveneTest.default(y = y, group = group, ...): group coerced to
## factor.
## Picking joint bandwidth of 134
## $dist_plots

## 
## $stat_tables

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

skin_clean_w_path %>% get_tag_cor() %>% print()
## Warning in stats::cor(cor_data): the standard deviation is zero
## # A tibble: 108 x 2
##    name                   correlation
##    <chr>                        <dbl>
##  1 radi_bun_t_joint            0.0874
##  2 radi_bun_t_mri              0.0874
##  3 radi_bun_t_shoulder         0.0874
##  4 radi_bun_t_without_dye      0.0874
##  5 surg_bun_t_b9               0.0823
##  6 medi_bun_t_dialys           0.0661
##  7 radi_bun_t_exam             0.0596
##  8 radi_bun_t_x-ray            0.0596
##  9 faci_bun_t_dept             0.056 
## 10 faci_bun_t_emergency        0.056 
## # ... with 98 more rows
skin_clean_w_path <- skin_clean_w_path[,`:=`(
  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)
  )]

340

skin_clean_w_path_btbv5 <- skin_clean_w_path %>% 
  btbv5(
    osa_group_p=NA,
    osa_class_p = "Dermatology",
    osa_specialization_p = NA
  ) %>% 
  .[,`:=`(procedure_type=22, 
          procedure_modifier="Standard", 
          ingest_date =Sys.Date())]
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "KIRK RONALD STEPHENS"         
## [1] "multiple meet class req"
## [1] "BRIAN J WILLIAMS MD  (MIDVALE)" "BRIAN JEFFERY WILLIAMS"        
## [1] "multiple meet class req"
## [1] "BRIAN J WILLIAMS MD  (MIDVALE)" "BRIAN JEFFERY WILLIAMS"        
## [1] "multiple meet class req"
## [1] "BRIAN J WILLIAMS MD  (MIDVALE)" "BRIAN JEFFERY WILLIAMS"        
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "RULON RALPH BRADLEY"          
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "RULON RALPH BRADLEY"          
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "RULON RALPH BRADLEY"          
## [1] "multiple meet class req"
## [1] "BRIAN J WILLIAMS MD  (MIDVALE)" "BRIAN JEFFERY WILLIAMS"        
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "KIRK RONALD STEPHENS"         
## [1] "multiple meet class req"
## [1] "R RALPH BRADLEY M D  (MURRAY)" "RULON RALPH BRADLEY"
skin_clean_w_path_btbv5$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##    94.5   580.9   690.4   775.0   837.8 11563.6
skin_q1 <- skin_clean_w_path_btbv5$tp_med_med %>% quantile(.25)
skin_q3 <- skin_clean_w_path_btbv5$tp_med_med %>% quantile(.75)
skin_iqr <- skin_clean_w_path_btbv5$tp_med_med %>% IQR()
skin_clean_w_path_btbv5_final <- skin_clean_w_path_btbv5[tp_med_med >skin_q1 -1.5*skin_iqr & tp_med_med < skin_q3 + 1.5*skin_iqr ]
skin_clean_w_path_btbv5$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##    94.5   580.9   690.4   775.0   837.8 11563.6
skin_clean_w_path_btbv5_final$tp_med_med %>% summary()
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   262.2   580.0   680.3   690.2   798.9  1211.7
bq_table_upload(x=procedure_dev_table, values= skin_clean_w_path_btbv5_final, create_disposition='CREATE_IF_NEEDED', write_disposition='WRITE_APPEND')