| rems_score | R Documentation |
Calculates the Rapid Emergency Medicine Score (REMS) to predict in-hospital mortality in non-surgical emergency department patients. The score is an adaptation of the APACHE II score but relies on only six readily available parameters: age, heart rate, respiratory rate, systolic blood pressure, Glasgow Coma Scale (GCS), and oxygen saturation.
rems_score(age_years, heart_rate, respiratory_rate, systolic_bp, gcs_score,
oxygen_saturation)
age_years |
Numeric. Patient age in years. |
heart_rate |
Numeric. Heart rate in beats per minute. |
respiratory_rate |
Numeric. Respiratory rate in breaths per minute. |
systolic_bp |
Numeric. Systolic blood pressure in mmHg. |
gcs_score |
Numeric. Glasgow Coma Scale score (3-15). |
oxygen_saturation |
Numeric. Peripheral oxygen saturation (SpO2) percentage. |
A list containing:
REMS_Score |
The calculated total score (Range 0-26). |
Mortality_Risk |
Estimated mortality risk category. |
Olsson T, Terent A, Lind L. Rapid Emergency Medicine Score: a new prognostic tool for in-hospital mortality in nonsurgical emergency department patients. J Intern Med. 2004;255(5):579-587. doi:10.1111/j.1365-2796.2004.01321.x
# Example 1: Low Risk
# 40yo, HR 80, RR 16, SBP 120, GCS 15, SpO2 98
# Score = 0
rems_score(40, 80, 16, 120, 15, 98)
# Example 2: High Risk
# 70yo (+5), HR 120 (+2), RR 28 (+2), SBP 100 (0), GCS 12 (+2), SpO2 88 (+1)
# Score = 12
rems_score(70, 120, 28, 100, 12, 88)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.