Description Usage Arguments Value Author(s) References Examples
Identifies high-risk patients for in-hospital mortality with suspected infection outside the ICU.
1 2 3 4 5 | qSOFA(
altered.mental.status = "no",
respiratory.rate = 16,
systolic.blood.pressure = 120
)
|
altered.mental.status |
String value. Input "yes" if patient has altered mental status. Input 'no' if the patient does not have altered mental status. Please use lower case. |
respiratory.rate |
Numerical or integer value corresponding to number of breaths per minute of the patient. |
systolic.blood.pressure |
Numerical or integer value corresponding to the patient's systolic blood pressure. |
Integer value corresponding to the qSOFA score.
Risk group
Patient's with scores 0-1 are not high risk for in-hospital mortality. Patient's with scores 2-3 are at High risk for in-hospital mortality (3 to 14-fold increase).
Carlos C Vera Recio
Seymour CW, Liu VX, Iwashyna TJ, et al. Assessment of Clinical Criteria for Sepsis: For the Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3). JAMA. 2016;315(8):762–774. doi:10.1001/jama.2016.0288
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Patient with altered mental status and tachypnea
qSOFA(
altered.mental.status = "yes",
respiratory.rate = 21,
systolic.blood.pressure = 120
)
# Patient without altered mental status but with tachypnea and droping blood pressures.
qSOFA(
altered.mental.status = "no",
respiratory.rate = 21,
systolic.blood.pressure = 95
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.