Skip to contents

Providers with pending Medicare enrollment applications.

The Pending Initial Logging and Tracking (L & T) dataset provides a list of pending applications for both Physicians and Non-Physicians that have not been processed by CMS contractors.

Usage

pending(npi = NULL, first = NULL, last = NULL, count = FALSE)

Source

Medicare Pending Initial Logging and Tracking:

Arguments

npi

<int> National Provider Identifier

first, last

<chr> Provider's name

count

<lgl> Return the dataset's total row count

Value

A tibble

Examples

pending(count = TRUE)
#>  `pending` returned 9,654 results.
#>  Physician     : 3,224
#>  Non-Physician : 6,430
pending(first = "Victor", count = TRUE)
#>  `pending` returned 7 results.
#>  Physician     : 5
#>  Non-Physician : 2
pending(first = starts_with("V"))
#>  `pending` returned 145 results.
#>  Physician     : 38 
#>  Non-Physician : 107
#> # A tibble: 145 × 4
#>    prov_type first     last             npi       
#>    <fct>     <chr>     <chr>            <chr>     
#>  1 Physician VADIN     LALL DASS        1144512724
#>  2 Physician VAIBHAVI  SHAH             1437952843
#>  3 Physician VALENTINA TURBAY CABALLERO 1689304545
#>  4 Physician VALERIA   LOZADA MIRANDA   1881291540
#>  5 Physician VALERIE   ESPINOZA         1669050084
#>  6 Physician VALJEAN   BACOT-DAVIS      1407597651
#>  7 Physician VANESSA   LOUISSAINT       1386093193
#>  8 Physician VANESSA   NWOKOYE          1205530045
#>  9 Physician VANESSA   PARVEZ           1982465530
#> 10 Physician VANSHANI  PATEL            1649118753
#> # ℹ 135 more rows