| new_orleans_head_ct_rule | R Documentation |
Calculates the New Orleans Charity Head Trauma Rule result. This clinical decision rule identifies patients with minor head injury (GCS 15) who require a CT scan to rule out intracranial injury. If any one of the seven criteria is present, a CT is indicated.
new_orleans_head_ct_rule(headache, vomiting, age_gt_60, intoxication,
anterograde_amnesia, trauma_above_clavicles, seizure)
headache |
Numeric (0 or 1). Is headache present? (1 = Yes). |
vomiting |
Numeric (0 or 1). Is vomiting present? (1 = Yes). |
age_gt_60 |
Numeric (0 or 1). Is the patient older than 60 years? (1 = Yes). |
intoxication |
Numeric (0 or 1). Is there drug or alcohol intoxication? (1 = Yes). |
anterograde_amnesia |
Numeric (0 or 1). Is there persistent anterograde amnesia (short-term memory deficits)? (1 = Yes). |
trauma_above_clavicles |
Numeric (0 or 1). Is there visible trauma above the clavicles? (1 = Yes). |
seizure |
Numeric (0 or 1). Did a seizure occur? (1 = Yes). |
A list containing:
Recommendation |
Guidance on whether a CT scan is indicated. |
Criteria_Met_Count |
The number of positive criteria found. |
Haydel MJ, Preston CA, Mills TJ, Luber S, Blaudeau E, DeBlieux PM. Indications for computed tomography in patients with minor head injury. N Engl J Med. 2000;343(2):100-105. doi:10.1056/NEJM200007133430204
# Example 1: CT Indicated
# Headache (1), no other signs
new_orleans_head_ct_rule(1, 0, 0, 0, 0, 0, 0)
# Example 2: CT Not Indicated
# No criteria met
new_orleans_head_ct_rule(0, 0, 0, 0, 0, 0, 0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.