| evendo_esophageal_varices_score | R Documentation |
Structures the clinical inputs for the EVendo score, a predictive tool for identifying esophageal varices in patients with cirrhosis. The score utilizes Platelet count, INR, and Serum Urea to risk-stratify patients and determine the necessity of screening endoscopy.
evendo_esophageal_varices_score(platelet_count, inr, urea, urea_units = "mg/dL")
platelet_count |
Numeric. Platelet count in 10^9/L (or x1000/uL). |
inr |
Numeric. International Normalized Ratio. |
urea |
Numeric. Serum Urea level. |
urea_units |
String. Units for the urea input. Options: "mg/dL" (Urea), "BUN_mg_dL" (BUN to be converted), "mmol/L" (Urea SI units). |
A list containing:
Risk_Factors_Present |
Count of abnormal parameters (Low Platelets, High INR, High Urea). |
Interpretation |
General clinical guidance based on the presence of risk factors. |
Inputs |
Standardized input values. |
Tellez-Avila F, Chávez-Tapia N, Franco-Guzmán AM, et al. EVendo score: A simple model for the prediction of esophageal varices in patients with cirrhosis. Turk J Gastroenterol. 2019;30(2):168-173. doi:10.5152/tjg.2018.18055
# Example 1: High Risk
# Plt 80, INR 1.8, Urea 50 mg/dL
evendo_esophageal_varices_score(80, 1.8, 50)
# Example 2: Low Risk
# Plt 200, INR 1.0, Urea 20 mg/dL
evendo_esophageal_varices_score(200, 1.0, 20)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.