| gillmore_attr_cm_staging | R Documentation |
Calculates the Gillmore Stage (I, II, or III) for patients with Transthyretin Amyloid Cardiomyopathy (ATTR-CM). This prognostic staging system applies to both wild-type and hereditary subtypes. It uses NT-proBNP (cutoff 3000 pg/mL) and eGFR (cutoff 45 mL/min/1.73m^2) to stratify patients into three risk groups.
gillmore_attr_cm_staging(nt_probnp_pg_ml, egfr_ml_min_1_73m2,
genotype = "wild-type")
nt_probnp_pg_ml |
Numeric. N-terminal pro-B-type Natriuretic Peptide level in pg/mL. |
egfr_ml_min_1_73m2 |
Numeric. Estimated Glomerular Filtration Rate in mL/min/1.73m^2. |
genotype |
String. "wild-type" (default) or "hereditary"/"variant". Note: The staging cutoffs are universal, but original derivation included both populations. |
A list containing:
Gillmore_Stage |
The calculated stage (1, 2, or 3). |
Median_Overall_Survival |
Estimated median survival based on the NAC derivation cohort. |
Gillmore JD, Dzonlic H,any T, et al. Transthyretin Amyloid Cardiomyopathy: Clinical Features and Outcome in a Large Cohort. Circulation. 2017;136(22):2119-2131. doi:10.1161/CIRCULATIONAHA.117.030458
# Example 1: Stage I (Low Risk)
# NT-proBNP 1000 (<3000), eGFR 60 (>=45)
gillmore_attr_cm_staging(1000, 60)
# Example 2: Stage III (High Risk)
# NT-proBNP 4000 (>3000), eGFR 30 (<45)
gillmore_attr_cm_staging(4000, 30)
# Example 3: Stage II (Intermediate)
# NT-proBNP 4000 (>3000), but eGFR 60 (>=45) -> One criteria met
gillmore_attr_cm_staging(4000, 60)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.