sirs_simple: Calulate the SIRS score

View source: R/sirs_simple.R

sirs_simpleR Documentation

Calulate the SIRS score

Description

Calulate the SIRS score

Usage

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
)

Arguments

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

Value

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.

Examples

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

maciejrosolowski/progressdatenbankderivate documentation built on Nov. 29, 2024, 3:39 a.m.