Calculate Probability of Survival Using TRISS Method
Source:R/probability_of_survival.R
probability_of_survival.Rd
This function calculates the probability of survival (Ps) for trauma patients based on the Trauma and Injury Severity Score (TRISS) methodology. TRISS combines physiological and anatomical data to predict survival likelihood using a logistic regression model. The function incorporates trauma type, patient age, Revised Trauma Score (RTS), and Injury Severity Score (ISS) into the calculation. Probability of survival is expressed as a percentage.
Arguments
- trauma_type
Character vector indicating the type of trauma ("Blunt" or "Penetrating"). Different methods exist for calculating probability of survival for burn patients, and so these records are excluded here.
- age
Numeric vector indicating the patient's age in years.
- rts
Numeric vector indicating the patient's Revised Trauma Score (RTS).
- iss
Numeric vector indicating the patient's Injury Severity Score (ISS).
Value
Numeric vector of probabilities of survival (Ps) expressed as percentages on a scale from 0 to 1.