| villalta_pts_score | R Documentation |
Calculates the Villalta Score to diagnose and grade the severity of Post-Thrombotic Syndrome in patients with a history of Deep Vein Thrombosis (DVT). The score assesses 5 subjective symptoms and 6 objective clinical signs, each rated on a scale of 0 to 3. The presence of a venous ulcer automatically classifies the condition as severe.
villalta_pts_score(pain, cramps, heaviness, paresthesia, pruritus,
pretibial_edema, skin_induration, hyperpigmentation,
redness, venous_ectasia, pain_on_calf_compression,
venous_ulcer_present)
pain |
Numeric (0-3). Subjective rating of pain. (0=None, 1=Mild, 2=Moderate, 3=Severe). |
cramps |
Numeric (0-3). Subjective rating of cramps. |
heaviness |
Numeric (0-3). Subjective rating of heaviness. |
paresthesia |
Numeric (0-3). Subjective rating of paresthesia (pins and needles). |
pruritus |
Numeric (0-3). Subjective rating of pruritus (itching). |
pretibial_edema |
Numeric (0-3). Clinical sign of pretibial edema. |
skin_induration |
Numeric (0-3). Clinical sign of skin induration. |
hyperpigmentation |
Numeric (0-3). Clinical sign of hyperpigmentation. |
redness |
Numeric (0-3). Clinical sign of redness. |
venous_ectasia |
Numeric (0-3). Clinical sign of venous ectasia. |
pain_on_calf_compression |
Numeric (0-3). Clinical sign of pain on calf compression. |
venous_ulcer_present |
Numeric (0 or 1). Is a venous ulcer present? (1 = Yes). Note: Presence of an ulcer defines Severe PTS regardless of the numeric score. |
A list containing:
Villalta_Score |
The calculated total score (Sum of the 11 items). |
Classification |
Severity classification (Absent, Mild, Moderate, Severe). |
Villalta S, Bagatella P, Piccioli A, et al. Assessment of validity and reproducibility of a clinical scale for the postthrombotic syndrome. Haemostasis. 1994;24(1):158a. Kahn SR. Measurement of the postthrombotic syndrome. Wounds. 2009;21(11):304-309.
# Example 1: Mild PTS
# Pain 1, Edema 1, others 0
villalta_pts_score(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0)
# Example 2: Severe PTS due to Ulcer
# Score 10, Ulcer Present
villalta_pts_score(2, 2, 2, 1, 0, 1, 1, 1, 0, 0, 0, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.