Medicare Comprehensive Error Rate Testing (CERT)
Source:vignettes/articles/mcr_ffs_cert.Rmd
mcr_ffs_cert.Rmd
Information on Medicare Fee-for-Service (FFS) claims that underwent Comprehensive Error Rate Testing (CERT) medical review and used to calculate the Medicare FFS improper payment rate.
The Medicare Fee-for-Service (FFS) Comprehensive Error Rate Testing (CERT) dataset provides information on a random sample of FFS claims to determine if they were paid properly under Medicare coverage, coding, and payment rules. The dataset contains information on type of FFS claim, Diagnosis Related Group (DRG) and Healthcare Common Procedure Coding System (HCPCS) codes, provider type, type of bill, review decision, and error code. Please note, each reporting year contains claims submitted July 1 two years before the report through June 30 one year before the report. For example, the 2021 data contains claims submitted July 1, 2019 through June 30, 2020.
Examples
Most common billing errors by Provider type, 2021
codex_cert(decision = "Disagree") |>
dplyr::count(error_code,
provider_type,
sort = TRUE,
name = "no_of_claims") |>
reactable::reactable()
Most common billing errors by Procedure code, 2021
codex_cert(decision = "Disagree") |>
dplyr::count(hcpcs_procedure_code,
error_code,
sort = TRUE,
name = "no_of_claims") |>
reactable::reactable()