Skip to contents

HCPCS Type of Service Descriptions

Usage

switch_type_of_service(x)

Arguments

x

vector of Type of Service codes

Value

vector of Type of Service descriptions

Examples

dplyr::tibble(code = c(0:9, LETTERS),
              desc = switch_type_of_service(code))
#> # A tibble: 36 × 2
#>    code  desc                           
#>    <chr> <chr>                          
#>  1 0     Whole Blood Only               
#>  2 1     Medical Care                   
#>  3 2     Surgery                        
#>  4 3     Consultation                   
#>  5 4     Diagnostic Radiology           
#>  6 5     Diagnostic Laboratory          
#>  7 6     Therapeutic Radiology          
#>  8 7     Anesthesia                     
#>  9 8     Assistant at Surgery           
#> 10 9     Other Medical Items or Services
#> # ℹ 26 more rows