sirs_simple | R Documentation |
Calulate the SIRS score
sirs_simple(
temp.min,
temp.max,
hfrq.max,
afrq.max,
pco2,
leuko_min,
leuko_max,
stkern.neutro,
smkern.neutro,
verwirrt,
thrombo_min,
thrombo.daybefore,
oxi.ind,
chr.lunge,
diur,
gewicht,
bemin,
sysbp.min,
map,
kate
)
temp.min |
Minimal temperature in Celsius |
temp.max |
Maximal temperature in Celsius |
hfrq.max |
Pulse in beats/min |
afrq.max |
Respiratory rate in breaths/min |
pco2 |
Arterial partial pressure of carbon dioxide in kPa |
leuko_min |
Minimal WBC (white blood cell) count per cubic cm |
leuko_max |
Maximal WBC (white blood cell) count per cubic cm |
stkern.neutro |
Banded neutrophils count per microliter |
smkern.neutro |
Segmented neutrophils count per microliter |
verwirrt |
Altered mental status (confusion), yes 1, no 0 |
thrombo_min |
Minimal thrombocyte count per microlitre |
thrombo.daybefore |
Minimal thrombocyte count per microlitre on the previous day |
oxi.ind |
Minimal value of the oxygenation (Horowitz) index in kPa |
chr.lunge |
Chronic lung disease, yes 1, no 0 |
diur |
Diuresis in ml per day |
gewicht |
Weight in kg |
bemin |
Base excess |
sysbp.min |
Systolic blood pressure in mmHg |
map |
Mean arterial pressure in kPa |
kate |
Treatment using catecholamines, zes 1, no 0 |
A list with two compontens. The first, "infec.septic.servsept" is a scalar or vector with three possible values representing the SIRS criteria which the patient meets: 1: infected, 2: septic, 3: severe septic. The second, "shock" is a logical indicator if the septic shock criteria are met.
sirs <- sirs_simple(
temp.min = 34,
temp.max = 35,
hfrq.max = 104,
afrq.max = 20,
pco2 = 4.1,
leuko_min = 7800,
leuko_max = 7900,
stkern.neutro = 395,
smkern.neutro = 4424,
verwirrt = 1,
thrombo_min = 216000,
thrombo.daybefore = 205000,
oxi.ind = 43.81,
chr.lunge = 1,
diur = 3120,
gewicht = 70,
bemin = 3.4,
sysbp.min = 95,
map = 10.44,
kate = FALSE)
sirs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.