icd9IsBillable(icd9, isShort = icd9GuessIsShort(icd9), version = getLatestBillableVersion())
icd9IsBillableShort(icd9Short, version = getLatestBillableVersion())
icd9IsBillableDecimal(icd9Decimal, version = getLatestBillableVersion())
icd9GetBillable(icd9, isShort = icd9GuessIsShort(icd9), invert = FALSE, version = getLatestBillableVersion())
icd9GetBillableShort(icd9Short, version = getLatestBillableVersion())
icd9GetBillableDecimal(icd9Decimal, version = getLatestBillableVersion())
icd9GetNonBillableShort(icd9Short, version = getLatestBillableVersion())
icd9GetNonBillableDecimal(icd9Decimal, version = getLatestBillableVersion())
icd9GetNonBillable(icd9, isShort = icd9GuessIsShort(icd9), version = getLatestBillableVersion())
TRUE
, then the non-billable
codes are returned. For functions with logical result, just negate with
!
. Default is FALSE
.icd9IsBillableShort
: Are the given short-form codes leaf (billable)
codes in the hierarchy? icd9IsBillableDecimal
: Are the given decimal-form codes leaf (billable)
codes in the hierarchy? icd9GetBillable
: Return only those codes which are leaf (billable)
codes in the hierarchy. icd9GetBillableShort
: Return only those short-form codes which are leaf
(billable) codes in the hierarchy. icd9GetBillableDecimal
: Return only those decimal-form codes which are
leaf (billable) codes in the hierarchy. icd9GetNonBillableShort
: Return only those short-form codes which are not
leaf (billable) codes in the hierarchy. This would include invalid and
heading codes. icd9GetNonBillableDecimal
: Return only those decimal-form codes which are not
leaf (billable) codes in the hierarchy. This would include invalid and
heading codes. icd9GetNonBillable
: Return only those codes which are not leaf
(billable) codes in the hierarchy. This would include invalid and heading
codes. Codes are specified (or guessed) to be all decimal- or short-form.