Obtain the highest level of stenosis severity from coronary vessel data.
Arguments
- vessel_data
Input coronary vessel data
- stenosis_severity_grp_column
Column in `vessel_data` indicating the severity level of the different coronary vessels. Accepted severity levels are
Normal (0% stenosis)
Minimal (1 to 24% stenosis)
Mild (25 to 49% stenosis)
Moderate (50 to 69% stenosis)
Severe (70 to 99% stenosis)
Occluded (100% stenosis)
Details
From Cury et. al. (2022), the Society of Cardiovascular Computed Tomography (SCCT) graded luminal stenosis as follows:
Normal (0% stenosis)
Minimal (1 to 24% stenosis)
Mild (25 to 49% stenosis)
Moderate (50 to 69% stenosis)
Severe (70 to 99% stenosis)
Occluded (100% stenosis)
Examples
occluded_coronary_vessel_data <- tibble::tribble(
~coronary_vessel, ~vessel_severity,
"LM", "Normal",
"LAD", "Severe",
"LCX", "Minimal",
"RCA", "Occluded"
)
max_stenosis_severity <- get_max_stenosis_severity(
occluded_coronary_vessel_data,
"vessel_severity"
)
max_stenosis_severity
#> [1] "Occluded"