From 38a108a34b5f96a059a62ba918847259851c2880 Mon Sep 17 00:00:00 2001 From: andrewallenbruce Date: Fri, 22 Mar 2024 10:45:47 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20andrewal?= =?UTF-8?q?lenbruce/northstar@62b223383ba6ac2a74fd11fe700d3d33ca8d5d10=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 404.html | 2 +- LICENSE.html | 2 +- authors.html | 6 +- index.html | 2 +- news/index.html | 2 +- pkgdown.yml | 2 +- reference/adjustment_codes.html | 54 +++----- reference/calculate_amounts.html | 2 +- reference/case_asc.html | 2 +- reference/case_assistant.html | 2 +- reference/case_bilateral.html | 2 +- reference/case_category.html | 2 +- reference/case_cosurg.html | 2 +- reference/case_global.html | 2 +- reference/case_imaging.html | 2 +- reference/case_labcert.html | 2 +- reference/case_level.html | 2 +- reference/case_modifier.html | 2 +- reference/case_multiple_pricing.html | 2 +- reference/case_multproc.html | 2 +- reference/case_opps.html | 2 +- reference/case_pctc.html | 2 +- reference/case_pricing.html | 2 +- reference/case_section.html | 2 +- reference/case_section_cpt.html | 2 +- reference/case_section_hcpcs.html | 2 +- reference/case_section_icd10.html | 2 +- reference/case_status.html | 2 +- reference/case_supervision.html | 2 +- reference/case_team.html | 2 +- reference/case_tos.html | 2 +- reference/cases.html | 2 +- reference/count_days.html | 2 +- reference/descriptors.html | 6 +- reference/display_long.html | 2 +- reference/gpci.html | 12 +- reference/hcpcs_search.html | 2 +- reference/icd10_search.html | 2 +- reference/index.html | 95 ++++++++++---- reference/is_category_I.html | 138 +++++++++++++++++++ reference/is_category_II.html | 168 ++++++++++++++++++++++++ reference/is_category_III.html | 141 ++++++++++++++++++++ reference/is_level_I.html | 165 +++++++++++++++++++++++ reference/is_level_II.html | 164 +++++++++++++++++++++++ reference/is_valid_length.html | 141 ++++++++++++++++++++ reference/lcd.html | 2 +- reference/level2.html | 10 +- reference/limiting_charge.html | 2 +- reference/modifiers.html | 4 +- reference/msdrg.html | 2 +- reference/ncd.html | 2 +- reference/non_participating_amount.html | 2 +- reference/northstar-package.html | 2 +- reference/opps.html | 4 +- reference/pfs.html | 12 +- reference/rbcs.html | 2 +- reference/rvu.html | 6 +- reference/single_line_string.html | 2 +- reference/taxonomy.html | 8 +- search.json | 2 +- sitemap.xml | 18 +++ 61 files changed, 1101 insertions(+), 137 deletions(-) create mode 100644 reference/is_category_I.html create mode 100644 reference/is_category_II.html create mode 100644 reference/is_category_III.html create mode 100644 reference/is_level_I.html create mode 100644 reference/is_level_II.html create mode 100644 reference/is_valid_length.html diff --git a/404.html b/404.html index 76abf26..98d4daa 100644 --- a/404.html +++ b/404.html @@ -25,7 +25,7 @@ northstar - 0.0.0.9000 + 0.0.1 + + + + + +
+
+
+ +
+

Check if code is HCPCS Level 1 Category I (CPT)

+
+ +
+

Usage

+
is_category_I(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+ +
+

Examples

+
is_category_I("11646")
+#> [1] TRUE
+
+try(is_category_I("1164F"))
+#> [1] FALSE
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/is_category_II.html b/reference/is_category_II.html new file mode 100644 index 0000000..9078985 --- /dev/null +++ b/reference/is_category_II.html @@ -0,0 +1,168 @@ + +Check if code is HCPCS Level 1 Category II — is_category_II • northstar + Skip to contents + + +
+
+
+ +
+

Category II: Supplemental tracking codes that can be used for performance +measurement. These codes are intended to facilitate data collection about +quality of care by coding certain services and/or test results that support +performance measures and that have been agreed upon as contributing to +good patient care.

+
+ +
+

Usage

+
is_category_II(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+
+

Details

+

Some codes in this category may relate to compliance by the health care +professional with state or federal law. The use of these codes is optional. +The codes are not required for correct coding and may not be used as a +substitute for Category I codes. Services/procedures or test results +described in this category make use of alpha characters as the 5th +character in the string (i.e., 4 digits followed by an alpha character).

+

These digits are not intended to reflect the placement of the code in the +regular (Category I) part of the CPT code set. Also, these codes describe +components that are typically included in an evaluation and management +service or test results that are part of the laboratory test/procedure.

+

Consequently, they do not have a relative value associated with them.

+

Category II codes are:

  • Alphanumeric and consist of four digits followed by the letter F

  • +
  • NOT billing codes

  • +
  • Used to track services on claims for performance measurement

  • +
  • Not to be used as a substitute for Category I codes

  • +
+ +
+

Examples

+
is_category_II("1164F")
+#> [1] TRUE
+
+try(is_category_II("11646"))
+#> [1] FALSE
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/is_category_III.html b/reference/is_category_III.html new file mode 100644 index 0000000..995ae63 --- /dev/null +++ b/reference/is_category_III.html @@ -0,0 +1,141 @@ + +Check if code is HCPCS Level 1 Category III — is_category_III • northstar + Skip to contents + + +
+
+
+ +
+

Category III: a temporary set of codes for emerging technologies, +services, procedures, and service paradigms.

+
+ +
+

Usage

+
is_category_III(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+ +
+

Examples

+
is_category_III("0074T")
+#> [1] TRUE
+
+try(is_category_III("11646"))
+#> [1] FALSE
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/is_level_I.html b/reference/is_level_I.html new file mode 100644 index 0000000..e60bc05 --- /dev/null +++ b/reference/is_level_I.html @@ -0,0 +1,165 @@ + +Check if code is HCPCS Level I — is_level_I • northstar + Skip to contents + + +
+
+
+ +
+

HCPCS Level I is comprised of CPT (Current Procedural Terminology), +a numeric coding system maintained by the American Medical Association +(AMA). CPT is a uniform coding system consisting of descriptive terms and +identifying codes that are used primarily to identify medical services and +procedures furnished by physicians and other health care professionals. +These health care professionals use the CPT to identify services and +procedures for which they bill public or private health insurance programs.

+
+ +
+

Usage

+
is_level_I(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+
+

Details

+

Decisions regarding the addition, deletion, or revision of CPT codes are +made by the AMA. The CPT codes are republished and updated annually by the +AMA. Level I of the HCPCS, the CPT codes, does not include codes needed to +separately report medical items or services that are regularly billed by +suppliers other than physicians.

+
+ +
+

Examples

+
is_level_I("11646")
+#> [1] TRUE
+
+try(is_level_I("E8015"))
+#> [1] FALSE
+
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/is_level_II.html b/reference/is_level_II.html new file mode 100644 index 0000000..cc9b9aa --- /dev/null +++ b/reference/is_level_II.html @@ -0,0 +1,164 @@ + +Check if code is HCPCS Level II — is_level_II • northstar + Skip to contents + + +
+
+
+ +
+

HCPCS Level II is a standardized coding system that is used primarily to +identify products, supplies, and services not included in the CPT code set +jurisdiction, such as ambulance services and durable medical equipment, +prosthetics, orthotics, and supplies (DMEPOS) when used outside a +physician's office.

+
+ +
+

Usage

+
is_level_II(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+
+

Details

+

Level II of the HCPCS is a standardized coding system that is used primarily +to identify products, supplies, and services not included in the CPT codes, +such as ambulance services and durable medical equipment, prosthetics, +orthotics, and supplies (DMEPOS) when used outside a physician's office. +Because Medicare and other insurers cover a variety of services, supplies, +and equipment that are not identified by CPT codes, the level II HCPCS codes +were established for submitting claims for these items. The development and +use of level II of the HCPCS began in the 1980's. Level II codes are also +referred to as alpha-numeric codes because they consist of a single +alphabetical letter followed by 4 numeric digits, while CPT codes are +identified using 5 numeric digits.

+
+ +
+

Examples

+
is_level_II("E8015")
+#> [1] TRUE
+
+try(is_level_II("11646"))
+#> [1] FALSE
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/is_valid_length.html b/reference/is_valid_length.html new file mode 100644 index 0000000..c2b61c3 --- /dev/null +++ b/reference/is_valid_length.html @@ -0,0 +1,141 @@ + +Check if string is valid length of a HCPCS code — is_valid_length • northstar + Skip to contents + + +
+
+
+ +
+

Check if string is valid length of a HCPCS code

+
+ +
+

Usage

+
is_valid_length(x, arg = rlang::caller_arg(x), call = rlang::caller_env())
+
+ +
+

Arguments

+
x
+

string

+ + +
arg
+

string

+ + +
call
+

string

+ +
+
+

Value

+ + +

boolean

+
+ +
+

Examples

+
is_valid_length("11646")
+#> [1] "11646"
+
+try(is_valid_length("1164"))
+#> Error in eval(expr, envir, enclos) : 
+#>   A HCPCS code is 5 characters.
+#>  "1164" is 4.
+
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/reference/lcd.html b/reference/lcd.html index 0ab2ca8..c019500 100644 --- a/reference/lcd.html +++ b/reference/lcd.html @@ -10,7 +10,7 @@ northstar - 0.0.0.9000 + 0.0.1