Quality Payment Reporting
#> Error:
#> ℹ In index: 2.
#> Caused by error in `dplyr::arrange()`:
#> ℹ In argument: `..2 = participation_type`.
#> Caused by error:
#> ! object 'participation_type' not found
#> function (save = "default", status = 0, runLast = TRUE)
#> .Internal(quit(save, status, runLast))
#> <bytecode: 0x559bc39cde00>
#> <environment: namespace:base>
Grouping
q |>
select(year,
participation_type,
org_name,
org_size,
beneficiaries,
services,
charges,
final_score,
pay_adjust,
ind_lvt_status_desc)
#> Error in UseMethod("select"): no applicable method for 'select' applied to an object of class "function"
Special Statuses
select(q, year, participation_type, org_name, org_size, qpp_status) |>
unnest(qpp_status)
#> Error in UseMethod("select"): no applicable method for 'select' applied to an object of class "function"
select(q, year, participation_type, org_name, org_size, qpp_status) |>
unnest(qpp_status) |>
count(org_name, qualified, sort = TRUE)
#> Error in UseMethod("select"): no applicable method for 'select' applied to an object of class "function"
Individual Category Measures
select(q, year, participation_type, org_name, org_size, qpp_measures) |>
unnest(qpp_measures)
#> Error in UseMethod("select"): no applicable method for 'select' applied to an object of class "function"
select(q, year, participation_type, org_name, org_size, qpp_measures) |>
unnest(qpp_measures) |>
count(year, org_name, category, sort = TRUE)
#> Error in UseMethod("select"): no applicable method for 'select' applied to an object of class "function"
#> Error:
#> ℹ In index: 2.
#> Caused by error in `dplyr::arrange()`:
#> ℹ In argument: `..2 = participation_type`.
#> Caused by error:
#> ! object 'participation_type' not found
#> Error: object 'qq' not found