oppe_denials_detail_query: OPPE Denials Detail Query

Description Usage Arguments Details Value Author(s) Examples

View source: R/oppe_report_query_funtions.R

Description

Get the Denials Detail data for a specified provider.

Usage

1

Arguments

.provider_id

The id of the provider you want denial detial for

Details

Value

A tibble object

Author(s)

Steven P. Sanderson II, MPH

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Not run: 
library(dplyr)

oppe_denials_detail_query(.provider_id = "005892") %>%
glimpse()

# If provider id is not known you can do either of the following
# pract_dim_v_query(.name = "the providers name") and the pract_no will be
# returned to you, or you could do the following:

oppe_denials_detail_query(
  .provider_id = pract_dim_v_query(.name = "name_here") %>%
    dplyr::pull(pract_no)
)

## End(Not run)

spsanderson/LICHospitalR documentation built on Jan. 6, 2022, 12:32 a.m.