Introduction
The global population of older adults is rapidly increasing, as the need to study the mechanisms of aging and its associated conditions. Among these, sarcopenia [1] is of particular concern due to its association with adverse outcomes, including falls, fractures, physical disability and increased mortality [2]. As defined by the European Working Group on Sarcopenia in Older People 2 (EWGSOP2), sarcopenia has evolved significantly in its diagnostic criteria over the years. Initially characterized by low muscle mass alone, the 2019 EWGSOP consensus introduced a refined definition, emphasizing low muscle strength as the principal diagnostic criterion, complemented by assessments of muscle quantity and quality [3]. Specific cutoff values for grip strength and the chair stand test (CST) are pivotal to identifying sarcopenia in clinical practice [3, 4]: grip strength, measured using a dynamometer, provides a rapid and practical indicator of upper body strength and the CST evaluates lower body strength by recording the time required for an individual to rise five times from a seated position without arm assistance. Current reference values for these tests are derived from population-level data, generally stratified by gender and age [5, 6]. In this scenario, a more personalized approach could be beneficial: These thresholds may fail to detect individuals with early reductions in strength when their values do not yet fall below the established cutoffs, especially in younger subjects.
To address these gaps, machine learning (ML) models offer a promising solution. By capturing complex, nonlinear relationships and interactions between predictive variables, ML models can overcome traditional limitations and enhance diagnostic precision, providing individualized reference values [7, 8]. However, in standard regression tasks, only point estimates are generally calculated, which do not provide any information regarding the dispersion of observations around the predicted value. In this scenario, quantile regression forests (QRF), a nonparametric, tree-based ensemble method can directly estimate conditional quantiles, naturally providing uncertainty estimation [9].
The aim of this study was the development and validation of a QRF model capable to predict reference values and quartiles for handgrip and CST. By providing personalized predictions alongside reference percentiles, the proposed model seeks to facilitate the early identification of individuals at higher risk of sarcopenia, supporting timely interventions.
Methods
The Longevity check-up 8+ project (Lookup 8+) is an ongoing initiative supported by the Department of Geriatrics of the Università Cattolica del Sacro Cuore and Fondazione Policlinico Universitario ‘Agostino Gemelli’ IRCCS (Rome, Italy). The study protocol received approval from the Ethical Committee of Università Cattolica del Sacro Cuore (Protocol No. A.1220/CE/2011); further details have been previously published [10]. The study is based on a retrospective analysis of a longitudinal cohort and describes the development of prediction models in accordance with the guidelines for transparent reporting of multivariable prediction models for individual prognosis or diagnosis—Artificial Intelligence (TRIPOD-AI, Table S6) [11].
Inclusion Criteria
All participants were at minimum 18 years of age and provided written informed consent prior to enrolment. Exclusion criteria included self-reported pregnancy, inability to perform physical performance tests, refusal to undergo capillary blood testing to measure total cholesterol and glycemia, and inability or unwillingness to provide written informed consent. The Lookup 8+ study participants recruitment was conducted in unconventional settings, including exhibitions, shopping centres, social gatherings and prevention campaigns organized by Università Cattolica del Sacro Cuore, aiming to include unselected participants and enhance generalizability of findings.
Measurement of Variables and Endpoints
A standard stadiometer and an analog scale were used to measure standing height and body weight. The body mass index (BMI) was determined as the ratio between body weight (kg) and the square of height (m2). Data on dietary and exercise habits and other lifestyle behaviours were collected using a structured interview. Handgrip strength and CST assessments were conducted according to EWGSOP2 recommendations [3]. Trained investigators performed all evaluations [12]. Handgrip strength assessment was performed with subject sitting on a chair, with a neutral position of the hand, elbow flexed at 90°, arm close to the body; maximum contraction value was assessed with a hydraulic dynamometer (North Coast Hand Dynamometer; North Coast medical Inc., Morgan Hill, CA, United States). Participants performed one familiarization trial before testing. Handgrip strength was measured in both hands, and the highest value was used for the analysis [13]. The CST test was also performed asking participants to stand up from a chair with their arms folded across the chest five consecutive times as quickly as possible. The chair height was chosen to minimize the influence of chair seat height on the test results [14]. The time taken to complete the five repetitions was measured using a handled stopwatch and used for the analysis [15]. Probable sarcopenia (PS) was considered according to EWGSOP2 criteria, defined by grip strength < 27 kg for men and < 16 kg for women or chair stand test execution time > 15 s for five rises [3].
Statistical Analysis and Sample Size
The characteristics of the study participants were summarized using descriptive statistics. Continuous variables were expressed as median values with interquartile ranges (IQR), and categorical variables were reported as absolute counts and percentages. Descriptive statistics were stratified by gender to present demographic and clinical characteristics. Differences between categorical variables were assessed using Chi Squared or Fisher's exact test, whereas differences between continuous variables were evaluated using the Mann–Whitney U test. Correlation between variables was assessed using the Spearman correlation coefficient (ρ). The Brown–Forsythe test was used to compare variances between groups. A Uniform Manifold Approximation and Projection (UMAP) analysis was performed to visually inspect patients' characteristics and preliminarily identify potential clusters based on clinical features. Although no formal sample size calculation was performed in advance, the large number of included patients and the models' performances suggest that an adequate number of observations per variable was reached. Statistical analyses were performed using R Studio (ver 4.2.2) and Python (ver 3.10). All hypotheses were two-sided, and p < 0.05 was considered statistically significant, except when otherwise specified.
Preprocessing
Samples with missing data for at least one of the following variables were excluded: age, sex, height, weight, handgrip strength or CST performance, and a complete case approach was used for model training. The dataset was randomly split into training, validation and test sets using a 70/20/10 proportion. This partition was used to ensure a large enough training set for model development and hyperparameter tuning and a 20% validation set to assess model performance. Given the large sample size, a 10% hold-out test set was considerate adequate to ensure robust statistical evaluation. For model development and clinical interpretation, the variables age, gender, height, weight and BMI were chosen based on potential clinical utility and broad real-world availability. Age, weight, height and BMI were considered as numerical variables whereas gender and PS as binary variables. The two endpoints were treated as continuous numerical variables, configuring a supervised regression task. Categorical variables were encoded using one-hot encoding, and continuous variables were scaled using z-score standardization as a preprocessing step.
Model Development and Evaluation
A QRF model [9] was trained using the quantile-forest package, including in the pipeline hyperparameter tuning via Bayesian optimization with a five fold-cross validation (CV) approach [16]. Using optuna [17], the following hyperparameters were tuned: number of trees (n_estimators, range 100–1000), maximum depth of trees (max_depth, range 3–20) and minimum number of samples require to be at a leaf node (min_sample_leaf, range 20–100). Optimization was run for 30 trials using the Tree-structured Parzen Estimator sampler. For comparison, a standard random forest (RF) model was also trained using the sklearn package. Hyperparameters optimization was performed using the R-squared (R2) as target metric, aiming to maximize the explained variance. For each model, we evaluated the R2, the mean squared error (MSE), the root mean squared error (RMSE) and the mean Winkler interval score (MWIS) with 90% prediction coverage (PC) [18]. Five-thousand bootstrap replicates were adopted to calculate 95% confidence intervals (CI) for the R2, MSE and RMSE. Two-thousand bootstrap replicates were used for 95% CI and prediction intervals (PI) stratified to gender. Percentiles were calculated using the quantile argument of the predict function. The model with the highest mean R2 across the cross-validation folds of the train set was selected as the best-performing model and evaluated on validation and test set. Agreement between actual and predicted values was visually assessed using actual versus predicted plots, and the distribution of residuals was examined. The F1 score was used to choose the prediction threshold in the test set. The cutoff was evaluated in the validation and test set, comparing the F1 score, the confusion matrix and accuracy.
Variable Contribution
To favour model explainability and facilitate the clinical interpretation of the results, Shapley Additive Explanations (SHAP) values were calculated using the SHAP package [19]. Beeswarm plots were generated to visualize the distribution of SHAP values across all features, and the absolute mean contributions of the features were also inspected. Dependence plots were utilized to explore potential interactions between variables.
Results
Patients' Population
Between 1 June 2015 and 23 November 2024, a total of 21 171 individuals were enrolled, of which 19 995 had no missing values in the variables of interest and were included in our analysis. Subjects' characteristics are reported in Table 1. In the overall population, 11 019 (55.1%) were female and 8976 (44.9%) males. Median age was 56 years (IQR 47.0–67.0). Median overall grip strength value in males was 40.0 kg (IQR 34.0–46.7) and in females 24.0 kg (IQR 20.4–28.0). The median time for the CST was 7.4 s (IQR 6.2–8.9): Male's median value was 7.3 s (IQR 6.1–8.7) and female's 7.5 s (IQR 6.2–9.0). After the train/validation/test split, 13 996 subjects were included in the train set, 4199 in validation set and 1800 in the test set. Patients' characteristics were well balanced between the three cohorts (Table S1).
TABLE 1 Patients' characteristics.
Overall ( |
Female ( |
Male ( |
Missing | |
Age (years) | 56.0 [47.0–67.0] | 56.0 [47.0–66.0] | 57.0 [47.0–67.0] | 0 |
Active smoke | 65 | |||
No | 16 200 (81.0) | 8986 (81.6) | 7214 (80.4) | |
Yes | 3730 (18.7) | 1997 (18.1) | 1733 (19.3) | |
Physical activity | 89 | |||
No | 8126 (40.6) | 4822 (43.8) | 3304 (36.8) | |
Yes | 11 780 (58.9) | 6137 (55.7) | 5643 (62.9) | |
Weight (kg) | 70.0 [60.0–80.0] | 62.0 [56.0–70.0] | 78.0 [71.0–86.0] | 0 |
Height (cm) | 168.0 [160.0–175.0] | 162.0 [157.0–167.0] | 175.0 [170.0–180.0] | 0 |
Body mass index (kg/m2) | 24.6 [22.2–27.4] | 23.6 [21.2–26.7] | 25.5 [23.6–28.0] | 0 |
Systolic blood pressure (mmHg) | 122.0 [110.0–135.0] | 120.0 [110.0–130.0] | 130.0 [120.0–140.0] | 617 |
Diastolic blood pressure (mmHg) | 76.0 [70.0–80.0] | 74.0 [70.0–80.0] | 80.0 [70.0–85.0] | 621 |
Cholesterol (mg/dL) | 197.0 [174.0–222.0] | 201.0 [180.0–225.0] | 190.0 [166.0–218.0] | 968 |
Glucose (mg/dL) | 100.0 [91.0–113.0] | 99.0 [91.0–111.0] | 101.0 [91.0–114.0] | 379 |
Calf circumference (cm) | 36.0 [33.8–38.0] | 35.0 [33.0–37.0] | 37.0 [35.0–39.0] | 0 |
Handgrip (kg) | 29.5 [23.0–40.0] | 24.0 [20.4–28.0] | 40.0 [34.0–46.7] | 0 |
Chair stand test (s) | 7.4 [6.2–8.9] | 7.5 [6.2–9.0] | 7.3 [6.1–8.7] | 0 |
Sarcopenia EWGSOP2 | 0 | |||
No | 18 553 (92.8) | 10 274 (93.2) | 8279 (92.2) | |
Yes | 1442 (7.2) | 745 (6.8) | 697 (7.8) |
Train Set Exploratory Analysis
After UMAP, as expected, we observed two clear clusters of subjects corresponding to gender (Figure 1a). Within the low dimensional space, we observed a gradient along the UMAP axes both for age (with younger observations predominantly clustered in the upper region and older subjects concentrated towards the bottom; Figure 1b). A similar trend was observed for handgrip: stratified by gender, lower values were mapped in the upper right corner of the corresponding gender regions (Figure 1c). This showed a partial overlap with the CST values, mapped in the lower part of the embedding space (Figure 1d). As expected, we observed a negative correlation between handgrip and CST, and a minimal correlation between CST and gender (Figure 1e).
[IMAGE OMITTED. SEE PDF]
In the train set, we observed a significant difference in variances between females and male of the handgrip (35.51 vs. 90.07, p value 3.9 × 10−242) and the CST (6.31 vs. 4.78, p value 4.6 × 10−9). For handgrip, we observed a negative trend for variance values according to age bins, with a strong negative correlation both for males (Spearman rho, ρ = −0.96) and females (ρ = −0.89) (Figure S1). The opposite trend was observed for CST, with higher variances for older subjects (ρ = 0.96 for males and ρ = 0.90 for females) (Figure S2).
Handgrip Model
For handgrip prediction, the QRF model achieved a mean cross-validated R2 of 0.65 in the training set, with a MSE of 42.54 and a RMSE of 6.52 (Table 2a and Figure S3). In the validation set, the R2 was 0.65 (95% CI 0.63–0.67), with a MSE of 43.30 (95% CI 40.22–46.71) and a RMSE of 6.58 (95% CI 6.34–6.83). Consistent results were observed in the test set: The R2 was 0.64 (95% CI 0.62–0.67), with a MSE of 45.34 (95% CI 41.59–49.22) and a RMSE of 6.58 (95% CI 6.45–7.02). The MWIS scores were 27.18 (PC: 91.5%) in the validation set and 28.05 (PC: 91.2%) in the test set, with similar values in males and females. The actual versus predicted values plots and residual plots are shown in Figures 2a–d and S4.
TABLE 2 Model performance of quantile random forest (QRF) regressor stratified by set and gender.
(a) Handgrip | |||||
Set |
|
MSE | RMSE | MWIS | PC |
Train | 0.65* | 42.54* | 6.52* | 26.06 | 92.0% |
Validation | 0.65 (95% CI 0.63–0.67) | 43.30 (95% CI 40.22–46.71) | 6.58 (95% CI 6.34–6.83) | 27.18 | 91.5% |
Female | 0.29 (95% CI 0.25–0.33) | 27.73 (95% CI 24.46–31.45) | 5.27 (95% CI 4.95–5.61) | 22.34 | 91.1% |
Male | 0.28 (95% CI 0.24–0.32) | 62.67 (95% CI 57.43–68.74) | 7.92 (95% CI 7.58–8.29) | 33.21 | 91.9% |
Test | 0.64 (95% CI 0.62–0.67) | 45.34 (95% CI 41.59–49.22) | 6.58 (95% CI 6.45–7.02) | 28.05 | 91.2% |
Female | 0.28 (95% CI 0.22–0.33) | 28.78 (95% CI 24.80–33.02) | 5.36 (95% CI 4.98–5.75) | 22.96 | 91.8% |
Male | 0.31 (95% CI 0.25–0.36) | 64.56 (95% CI 58.20–71.48) | 8.04 (95% CI 7.63–8.45) | 33.97 | 90.4% |
(b) Chair stand test | |||||
Set |
|
MSE | RMSE | MWIS | PC |
Train | 0.24* | 4.27* | 2.07* | 7.72 | 92.8% |
Validation | 0.23 (95% CI 0.20–0.25) | 4.68 (95% CI 4.12–5.32) | 2.16 (95% CI 2.03–2.31) | 8.70 | 89.5% |
Female | 0.23 (95% CI 0.19–0.26) | 5.22 (95% CI 4.40–6.25) | 2.28 (95% CI 2.10–2.50) | 9.23 | 89.5% |
Male | 0.21 (95% CI 0.17–0.25) | 4.02 (95% CI 3.41–4.67) | 2.00 (95% CI 1.85–2.16) | 8.04 | 89.6% |
Test | 0.24 (95% CI 0.20–0.28) | 4.13 (95% CI 3.67–4.65) | 2.03 (95% CI 1.91–2.16) | 8.52 | 89.3% |
Female | 0.23 (95% CI 0.18–0.28) | 4.54 (95% CI 3.83–5.28) | 2.13 (95% CI 1.96–2.30) | 8.94 | 88.0% |
Male | 0.25 (95% CI 0.19–0.30) | 3.66 (95% CI 3.10–4.34) | 1.91 (95% CI 1.76–2.08) | 8.02 | 90.8% |
[IMAGE OMITTED. SEE PDF]
We then evaluated the performance separately in females and males: As expected, the R2 dropped to, respectively, 0.29 (95% CI 0.25–0.33) and 0.28 (95% CI 0.24–0.32). These data suggest that gender contributes to approximately 35% of the explained variability in the handgrip values, whereas the other variables account for about 30%. Moreover, we observed a difference between MSE and RMSE: In females, the values were, respectively, 27.73 (95% CI 24.46–31.45) and 5.27 (95% CI 4.95–5.61), whereas in males 62.67 (95% CI 57.43–68.74) and 7.92 (95% CI 7.58–8.29). Consistent results were observed in the test set. Coherently, 95% model prediction intervals in the validation set were 18.00–30.00 in females and 28.00–48.60 in males. Consistent values were observed in the test set (18.30–29.90 in females and 28.00–49.10 in males).
The standard RF model yielded similar performance (Table S2a). In our sensitivity analysis, the addition of calf circumference to handgrip prediction did not result in model improvement (Table S3 and Figure S5).
As expected, gender was the most important variable (absolute SHAP value: 4.63), followed by age and height (Figure 3a,b). Coherently, we observed an interaction between gender and age, as after 50 years, males had a steeper decrease in SHAP values compared to females. Interestingly, we observed a clear separation for BMI values above 25, whereas no clear difference was observed for lower values. A similar trend was observed for weight but not for height (Figure 3c–f).
[IMAGE OMITTED. SEE PDF]
We then assessed the association between RF residuals and PS (Table S4). In patients without PS, median value was 0.28 (IQR −2.98 to 3.89), compared to −7.39 (IQR −10.93 to −4.47) in patients with PS. This result was consistent according to gender: In subject with PS, median value was −6.41 (IQR −8.70 to −4.02) in females and −9.78 (IQR −14.50 to −5.22) in males. We then conducted an exploratory cutoff analysis to maximize the F1 score in the train set. In females, the optimal cut point was −6.08, and in males, it was −9.47, obtaining an F1 score in subject with PS of 0.46 and an F1 score in subjects without PS of 0.95 (Figure S6). We then evaluated these values in the validation set, obtaining an accuracy of 0.91, a F1 score of 0.95 in subjects without PS and of 0.46 in subjects with PS, with a ROC-AUC of 0.87. Similar results were observed in the test set (Figure S7).
Chair Stand Test Model
For CST prediction, the QRF model achieved a mean cross-validated R2 of 0.24 in the training set, with a MSE of 4.27 and a RMSE of 2.07 (Table 2b and Figure S8). In the validation set, the R2 was 0.23 (95% CI 0.20–0.25), with a MSE of 4.68 (95% CI 4.12–5.32) and a RMSE of 2.16 (95% CI 2.03–2.31). Consistent results were observed in the test set: The R2 was 0.24 (95% CI 0.20–0.28), with a MSE of 4.13 (95% CI 3.67–4.65) and a RMSE of 2.03 (95% CI 1.91–2.16). The MWIS scores were 8.70 (PC: 89.5%) in the validation set and 8.52 (PC: 89.3%) in the test set, with similar values in males and females. The actual versus predicted values plots and residual plots are shown in Figures 4a–d and S9.
[IMAGE OMITTED. SEE PDF]
We then evaluated the performance separately in women and men: the R2 remained stable to respectively 0.23 (95% CI 0.19–0.26) and 0.21 (95% CI 0.17–0.25). Moreover, we observed a difference between MSE and RMSE: In females, the values were, respectively, 5.22 (95% CI 4.40–6.25) and 2.28 (95% CI 2.10–2.50), whereas in males 4.02 (95% CI 3.41–4.67) and 2.00 (95% CI 1.85–2.16). Consistent results were observed in the test set. The 95% model prediction intervals were 5.84–10.40 in females and 6.02–10.00 in males in the validation set. Consistent results were observed in the test set: 5.80–10.14 for females and 6.06–10.00. The standard RF model yielded similar performance (Table S2b).
As expected, age was the most contributing variable (absolute SHAP value: 0.88), followed by gender and BMI (Figure 5a,b). We observed an interaction between gender and age, as after 60 years, females had a steeper increase in SHAP values compared to males (Figure 5c–f).
[IMAGE OMITTED. SEE PDF]
We then assessed the association between RF residuals and PS (Table S5). In patients without PS, median value was −0.28 (IQR −1.25 to 0.87) compared to 0.60 (IQR −0.97 to 2.91) in patients with PS. This result was consistent according to gender: Median value in patients with PS was 0.85 (IQR −0.95 to 3.92) in females and 0.32 (IQR −1.02 to 2.41) in males (Figure S10). No further cutoff analysis was performed.
Models' Predictions and Integration
Model predictions were then interpreted in the context of EWGSOP2 cutoffs: We calculated the percentage of patients with PS according to EWGSOP2 criteria, stratified by the model-derived predicted quantiles in the validation set. For handgrip, approximately 23% of individuals in the first predicted quartile met the criteria for PS, whereas this proportion dropped to less than 5% in the second predicted quartile. A similar decreasing trend was observed using deciles (Figure 6a,b). For CST, 13% of subjects in the 75th–99th percentile met the criteria of PS, whereas the prevalence was below 7% in the remaining quantiles. Using deciles, a notable increase was observed after the 80th percentile (Figure 6c,d).
[IMAGE OMITTED. SEE PDF]
Our proposed framework allows to visualize predicted outcomes alongside individualized reference quantiles, using subject-specific characteristics as input. Figure 6e presents the output for a 50-year-old man, with weight 70 kg and height 175 cm. The actual values of handgrip and CST were 45 kg and 8 s, respectively. The black points represent the actual values and the vertical lines the corresponding quantiles. Figure 6f presents the corresponding quantiles for handgrip and CST test based on the individual's characteristics, showing the different quantiles for subject with the same baseline characteristics and different age.
Discussion
This study focused on developing predictive algorithms capable of estimating handgrip strength and CST test performance using basic demographic and anthropometric variables, such as age, sex, height, weight and BMI to support deployment in real-world, community-based scenarios. Currently, age and gender-specific values falling below the 5th percentile for handgrip and above the 95th for the CST test are used to identify low muscle strength and PS, requiring additional evaluation [20]. Other cutoffs have also been proposed, such as the 25th percentile for handgrip and 75th percentile for CST [21]. This study extends our previous work [5], by shifting the paradigm from population level reference values to a subject-specific approach, allowing the early identification of subjects of different ages at potential risk of sarcopenia, tailoring the timing of clinical or nutritional interventions, aiming to apply interventions earlier, when needed. This proactive approach may delay or even reverse the progression of sarcopenia, reducing the associated burden of frailty, falls, fractures and physical disability [22, 23]. To enhance applicability, a web-based application is also under development to allow real-time predictions for clinicians.
Compared to traditional regression models, tree-based algorithms such as QRF offer specific advantages [7]. Due to the different statistical properties of the muscle strength measure, male and female are usually analysed separately, thus limiting the evaluation of possible interactions. In our analysis, the large amount of training data allowed the model to identify gender-specific interactions and nonlinear relationships without prior specification: Inspecting the SHAP values of our model, we observed a differential decline in handgrip strength with age between males and females. Males demonstrated a higher variance of handgrip strength values and a steeper decline compared to females. The SHAP values for age started decreasing after 45 years both for males and females, crossing at approximately 60 years, followed by a steeper decrease in males. These two age cutoffs identified by our models align with established milestones in the aging process, as previously reported in studies exploring nonlinear patterns in molecular markers of aging [24]. Dysregulation around 44 and 60 years of age has been linked to significant transitions in physiological systems. Therefore, our findings further support the clinical relevance of an early screening for sarcopenia starting from middle age, with the aim of implementing appropriate strategies to prevent muscle strength loss in later years [25]. In this light, it is worth noting that currently used cutoffs are not applicable to young subjects and may therefore not be used for the early identification of young adults at risk for sarcopenia, a gap that our study tried to address. Moreover, our models indirectly validated the EWGSOP2 cutoffs for grip strength, with the lower bounds of the 95% prediction intervals closely aligning with established thresholds. This is relevant, because there was no information leakage to the model for the binary variable encoding PS. These models are also inherently robust to multicollinearity: Although BMI is derived from height and weight, at each split, the algorithm selects the most informative variable based on impurity reduction. SHAP analysis also confirmed that BMI, weight and height contributed nonredundantly, supporting their inclusion in the model. In the end, compared to standard approaches, nonparametric methods such as QRF are better suited to model the underlying variability observed in handgrip and CST performance, allowing data-driven uncertainty estimation. Coherently, our model produced wider prediction intervals for handgrip in males than in females, reflecting the different variance. Clinically, this can inform the degree of confidence surrounding the predictions: Wider intervals may prompt more caution, additional testing or follow-up assessments, particularly in borderline cases.
In our models, R2 values for CST were generally modest compared to handgrip. Two main factors may contribute. Statistically, visual inspection of the residuals suggested that the CST model exhibited greater heteroscedasticity, suggesting more variability in prediction errors. Clinically, handgrip strength appears more sensitive to early declines in muscle function, whereas CST performance tends to remain within normal limits until later stages of decline. This could potentially make handgrip strength a better indicator across a wide range of functional statuses, whereas CST could have reduced sensitivity in detecting early changes. From a measurement perspective, CST performance is inherently more variable due to its dependence on factors beyond pure muscle strength, such as balance, joint mobility, motivation and environmental conditions. These nonanthropometric influences introduce additional noise that likely limits the model's explanatory power. It is important to recognize that quantile-based models are not intended to provide single-point predictions but rather to estimate conditional distributions, offering reference intervals that naturally incorporate prediction uncertainty [9]. To evaluate the reliability of these intervals, we used MWIS and PC, assessing how well the predicted intervals match the distribution of observed outcomes [18]. PC remained close to the nominal 90% threshold across datasets, supporting reliability of model's uncertainty estimates. In the end, although R2 is not a direct measure of clinical utility, it remains one of the most interpretable metrics in regression tasks, quantifying the proportion of variance in the outcome explained by the model. A proper evaluation of clinical utility depends on how model outputs influence decisions and outcomes in real-world practice, requiring an evaluation beyond the scope of the current study.
In addition to muscle strength, increasing attention has been directed towards muscle power [26], thanks to its earlier and faster decline during aging [27]. Recently, Alcazar et al. [28] proposed an equation to estimate lower extremity muscle power, based on the CST test, weight and height. Similar variables (age, sex and calf circumference) are currently used to estimate appendicular skeletal muscle, based on the equation developed by the COCONUT Study Group [29]. These data suggest that our choice of the included variables was sensitive and interestingly, in our sensitivity analysis, there was no improvement in the handgrip prediction by adding calf circumference.
To favour the application of these models in sarcopenia prescreening phase, we analysed the percentage of patients with PS according to predicted quantiles, and we tried to identify possible cutoffs both in males and females. Based on our results, we propose as possible cutoffs the 25th percentile for handgrip and 75th percentile for CST. A schematic workflow is presented in Figure S11. Further prospective evaluation is required to validate these specific thresholds for the prediction of confirmed sarcopenia. Interestingly, our cutoff analysis suggested that a simple difference between the actual and the predicted handgrip values could itself be a useful metrics to screen patients at higher risk. Recently, Yin and Zhao [30] proposed a 24-variables gradient boosting classifier to predict sarcopenia based on the Asian Working Group for Sarcopenia 2019 framework. This model reached an AUC of 0.83 (95% CI 0.81–0.85), with an accuracy of 0.89 and an F1 score of 0.46. These results are in line with the ones achieved by our RF model using an absolute difference between the predicted and actual handgrip values greater than 6 kg for females and 9 kg for males. The application of artificial intelligence in sarcopenia research is rapidly evolving. A recent algorithm was developed in 2023, based on surface electromyography(sEMG), optimizing the support vector regression (SVR) model through a Sparrow Search Algorithm (SSA) [31]. The performance of the SSA-SVR model was better than other regression prediction models, with an R2 of 0.93 and a RMSE of 0.51. Although promising, this model relies on sEMG, an approach that requires specialized expertise and equipment. Subsequently, its applicability to community-dwelling older adults is limited, and it may be less suitable for routine screening.
The integration of universally available variables within our algorithms enhances their adaptability across different settings, ensuring broader applicability. These predictions could facilitate routine screening procedures, and incorporating such predictive tools into electronic health records has the potential to streamline clinical workflows by automatically flagging individuals at elevated risk during routine healthcare visits, ensuring high-risk patients are not overlooked. Additionally, functional measures such as handgrip strength and CST performance, when combined with the models' predictive outputs, may serve as surrogate biomarkers of the aging process, capturing functional decline.
Some limitations should be acknowledged. The predicted handgrip values and CST performance can only indicate the likelihood of PS, and a formal diagnosis requires confirmation, evaluating muscle quantity or quality, based on the EWGSOP2 criteria. Our cohort was predominantly composed of Caucasian participants, requiring validation of our findings in other ethnicities and geographic populations given the known differences in body composition, muscle strength and physical performance across different populations: External validation of our findings in multiethnic cohorts is essential to ensure a broader applicability and to refine population-specific cutoffs. Quantiles were obtained from cross-sectional data: If used longitudinally, quantiles cannot be interpreted as individual trajectories over time but should only be used to compare the predicted values for a subject with the same characteristics in different ages. A formal comparison with existing normative models, and an evaluation of whether the QRF-based method improves the identification of individuals with confirmed sarcopenia, would require long-term follow-up data to prospectively assess the model's utility in long-term risk stratification. Limitations also include the lack of information about specific conditions that could influence neuromuscular function, such as musculoskeletal and neurological disorders. The unconventional setting in which data was collected should be acknowledged. Although this recruitment strategy aligns with the intended use of the model as a prescreening tool to identify early functional decline in community-dwelling adults, there is a potential for selection bias, as the population recruited may be relatively healthier and more functionally independent than the general adult population. Finally, the cutoff analysis for handgrip strength should be interpreted with caution, as it was exploratory in nature: The primary objective of our study was not to develop a binary classifier for PS but to predict muscle strength as a continuous outcome. The F1 score for PS was included to illustrate that even a model trained with few variables can yield reasonable performance in binary discrimination, despite not being specifically optimized for that task. Importantly, the observed performance is aligned with the intended role of the models as a prescreening tool rather than a confirmatory test. In this context, the high F1 score in individuals unlikely to have sarcopenia supports its use to reduce unnecessary testing in low-risk populations.
These limitations aside, the developed models demonstrated the ability to predict subject-specific quantiles for handgrip strength and the CST test using easily accessible variables such as age, sex, height, weight and BMI. By enabling personalized risk assessments, these models can facilitate the early identification of individuals at higher risk for sarcopenia, allowing timely interventions, which are likely to be more effective in preventing or delaying sarcopenia progression compared to interventions implemented during advanced stages of the condition.
Acknowledgements
The authors recognized support by the Italian Ministry of Health—Ricerca Corrente 2024. The Lookup 8+ Study Group is composed as follows: Francesco Landi1,2, Roberto Bernabei2, Emanuele Marzetti1,2, Riccardo Calvani1,2, Luca Mariotti1,2, Stefano Cacciatore1,2, Hélio José Coelho-Junior1,2, Francesca Ciciarello1, Vincenzo Galluzzo1, Anna Maria Martone1,2, Anna Picca1,3, Andrea Russo1, Sara Salini1, Matteo Tosato1, Gabriele Abbatecola2, Clara Agostino2, Fiorella Ambrosio2, Francesca Banella2, Carolina Benvenuto2, Damiano Biscotti1, Vincenzo Brandi1, Maria Modestina Bulla2, Caterina Casciani2, Lucio Catalano1, Camilla Cocchi1,2, Giuseppe Colloca1, Federica Cucinotta2, Emanuela D’Angelo1, Mariaelena D’Elia1, Federica D’Ignazio1,2, Daniele Elmi2, Marta Finelli2, Francesco Pio Fontanella2, Domenico Fusco1, Ilaria Gattari2, Giordana Gava1,2, Tommaso Giani1,2, Giulia Giordano1,2, Rossella Giordano1,2, Francesca Giovanale2, Simone Goracci2, Silvia Ialungo1,2, Rosangela Labriola2, Elena Levati1,2, Myriam Macaluso1,2, Luca Marrella2, Claudia Massaro1,2, Rossella Montenero1,2, Maria Vittoria Notari2, Maria Paudice2, Martina Persia2, Flavia Pirone2, Simona Pompei1, Rosa Ragozzino2, Carla Recupero2, Antonella Risoli2, Stefano Rizzo2, Daria Romaniello2, Giulia Rubini2, Barbara Russo2, Stefania Satriano2, Giulia Savera2, Elisabetta Serafini1, Annalise Serra Melechì2, Francesca Simeoni2, Sofia Simoni1,2, Chiara Taccone2, Elena Tagliacozzi2, Roberta Terranova2, Salvatore Tupputi2, Matteo Vaccarella2, Emiliano Venditti2, Chiara Zanchi2, Maria Zuppardo2 (1Department of Geriatrics, Orthopedics and Rheumatological Sciences, Fondazione Policlinico Universitario Agostino Gemelli, IRCCS Rome, Italy. 2Department of Geriatrics, Orthopedics and Rheumatological Sciences, Università Cattolica del Sacro Cuore, Rome, Italy. 3Department of Medicine and Surgery, LUM University, Casamassima, Italy). Open access publishing facilitated by Universita Cattolica del Sacro Cuore, as part of the Wiley - CRUI-CARE agreement.
Ethics Statement
The study was conducted in accordance with the Declaration of Helsinki and approved by the Ethics Committee of the Università Cattolica del Sacro Cuore, Rome, Italy (Protocol No. A.1220/CE/2011). The authors of this manuscript certify that they comply with the ethical guidelines for authorship and publishing in the Journal of Cachexia, Sarcopenia and Muscle [32].
Conflicts of Interest
The authors declare no conflicts of interest.
S. D. Anker, J. E. Morley, and S. von Haehling, “Welcome to the ICD‐10 Code for Sarcopenia,” Journal of Cachexia, Sarcopenia and Muscle 7 (2016): 512–514.
A. J. Cruz‐Jentoft, J. P. Baeyens, J. M. Bauer, et al., “Sarcopenia: European Consensus on Definition and Diagnosis,” Age and Ageing 39 (2010): 412–423.
A. J. Cruz‐Jentoft, G. Bahat, J. Bauer, et al., “Sarcopenia: Revised European Consensus on Definition and Diagnosis,” Age and Ageing 48 (2019): 16–31.
S. A. Studenski, K. W. Peters, D. E. Alley, et al., “The FNIH Sarcopenia Project: Rationale, Study Description, Conference Recommendations, and Final Estimates,” Journals of Gerontology. Series A, Biological Sciences and Medical Sciences 69, no. 5 (2014): 547–558, https://doi.org/10.1093/gerona/glu010.
F. Landi, R. Calvani, A. M. Martone, et al., “Normative Values of Muscle Strength Across Ages in a ‘Real World’ Population: Results From the Longevity Check‐Up 7+ Project,” Journal of Cachexia, Sarcopenia and Muscle 11 (2020): 1562–1569.
R. M. Dodds, H. E. Syddall, R. Cooper, et al., “Grip Strength Across the Life Course: Normative Data From Twelve British Studies,” PLoS ONE 9 (2014): e113637.
E. W. Steyerberg, T. van der Ploeg, and B. van Calster, “Risk Prediction With Machine Learning and Regression Methods,” Biometrical Journal 56 (2014): 601–606.
E. W. Steyerberg, Clinical Prediction Models (Springer New York, 2009).
N. Meinshausen, “Quantile Regression Forests,” 7 (2006).
F. Landi, R. Calvani, A. Picca, et al., “Cardiovascular Health Metrics, Muscle Mass and Function Among Italian Community‐Dwellers: The Lookup 7+ Project,” European Journal of Public Health 28 (2018): 766–772.
G. S. Collins, K. G. M. Moons, P. Dhiman, et al., “TRIPOD+AI Statement: Updated Guidance for Reporting Clinical Prediction Models That Use Regression or Machine Learning Methods,” BMJ 385 (2024): e078378.
F. Landi, M. Cesari, R. Calvani, et al., “The “Sarcopenia and Physical fRailty IN Older People: Multi‐componenT Treatment Strategies” (SPRINTT) Randomized Controlled Trial: Design and Methods,” Aging Clinical and Experimental Research 29, no. 1 (2017): 89–100, https://doi.org/10.1007/s40520‐016‐0715‐2.
B. Bourgeois, B. Fan, N. Johannsen, et al., “Improved Strength Prediction Combining Clinically Available Measures of Skeletal Muscle Mass and Quality,” Journal of Cachexia, Sarcopenia and Muscle 10 (2019): 84–94.
Y.‐L. Kuo, “The Influence of Chair Seat Height on the Performance of Community‐Dwelling Older Adults' 30‐Second Chair Stand Test,” Aging Clinical and Experimental Research 25 (2013): 305–309.
F. Buckinx, F. Landi, M. Cesari, et al., “Pitfalls in the Measurement of Muscle Mass: A Need for a Reference Standard,” Journal of Cachexia, Sarcopenia and Muscle 9 (2018): 269–278.
L. Mastrantoni, G. Garufi, G. Giordano, et al., “Accessible Model Predicts Response in Hormone Receptor Positive HER2 Negative Breast Cancer Receiving Neoadjuvant Chemotherapy,” NPJ Breast Cancer 11 (2025): 11.
T. Akiba, S. Sano, T. Yanase, T. Ohta, and M. Koyama, “Optuna,” Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, New York, NY, USA: ACM; (2019): 2623–2631.
R. L. Winkler, “A Decision‐Theoretic Approach to Interval Estimation,” Journal of the American Statistical Association 67 (1972): 187–191.
S. M. Lundberg, G. Erion, H. Chen, et al., “From Local Explanations to Global Understanding With Explainable AI for Trees,” Nature Machine Intelligence 2 (2020): 56–67.
M. A. Spruit, M. J. H. Sillen, M. T. J. Groenen, E. F. M. Wouters, and F. M. E. Franssen, “New Normative Values for Handgrip Strength: Results From the UK Biobank,” Journal of the American Medical Directors Association 14 (2013): 775.e5–775.e11.
D. P. Leong, K. K. Teo, S. Rangarajan, et al., “Reference Ranges of Handgrip Strength From 125,462 Healthy Adults in 21 Countries: A Prospective Urban Rural Epidemiologic (PURE) Study,” Journal of Cachexia, Sarcopenia and Muscle 7 (2016): 535–546.
H. J. Coelho‐Júnior, M. C. Uchida, A. Picca, et al., “Evidence‐Based Recommendations for Resistance and Power Training to Prevent Frailty in Community‐Dwellers,” Aging Clinical and Experimental Research 33 (2021): 2069–2086.
F. Landi, R. Calvani, M. Cesari, et al., “Sarcopenia as the Biological Substrate of Physical Frailty,” Clinics in Geriatric Medicine 31 (2015): 367–374.
X. Shen, C. Wang, X. Zhou, et al., “Nonlinear Dynamics of Multi‐Omics Profiles During Human Aging,” Nature Aging 4 (2024): 1619–1634.
J. Bauer, J. E. Morley, A. M. W. J. Schols, et al., “Sarcopenia: A Time for Action. An SCWD Position Paper,” Journal of Cachexia, Sarcopenia and Muscle 10, no. 5 (2019): 956–961, https://doi.org/10.1002/jcsm.12483.
K. F. Reid and R. A. Fielding, “Skeletal Muscle Power,” Exercise and Sport Sciences Reviews 40 (2012): 4–12.
F. Lauretani, C. R. Russo, S. Bandinelli, et al., “Age‐Associated Changes in Skeletal Muscles and Their Effect on Mobility: An Operational Diagnosis of Sarcopenia,” Journal of Applied Physiology 95 (2003): 1851–1860.
J. Alcazar, J. Losa‐Reyna, C. Rodriguez‐Lopez, et al., “The Sit‐To‐Stand Muscle Power Test: An Easy, Inexpensive and Portable Procedure to Assess Muscle Power in Older People,” Experimental Gerontology 112 (2018): 38–43.
L. P. Santos, M. C. Gonzalez, S. P. Orlandi, R. M. Bielemann, T. G. Barbosa‐Silva, and S. B. Heymsfield, “New Prediction Equations to Estimate Appendicular Skeletal Muscle Mass Using Calf Circumference: Results From NHANES 1999–2006,” Journal of Parenteral and Enteral Nutrition 43 (2019): 998–1007.
L. Yin and J. Zhao, “An Artificial Intelligence Approach for Test‐Free Identification of Sarcopenia,” Journal of Cachexia, Sarcopenia and Muscle 15 (2024): 2765–2780.
J. Lv, Y. Yang, L. Niu, et al., “Prediction of Hand Grip Strength Based on Surface Electromyographic Signals,” Journal of King Saud University, Computer and Information Sciences 35 (2023): 101548.
S. von Haehling, A. J. S. Coats, and S. D. Anker, “Ethical Guidelines for Publishing in the Journal of Cachexia, Sarcopenia and Muscle: Update 2021,” Journal of Cachexia, Sarcopenia and Muscle 12 (2021): 2259–2261.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
© 2025. This work is published under http://creativecommons.org/licenses/by/4.0/ (the "License"). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
ABSTRACT
Background
Muscle strength is one of the key components in the diagnosis of sarcopenia. The aim of this study was to train a machine learning model to predict reference values and percentiles for handgrip strength and chair‐stand test (CST), in a large cohort of community dwellers recruited in the Longevity check‐up (Lookup) 8+ project.
Methods
The longevity checkup project is an ongoing initiative conducted in unconventional settings in Italy from 1 June 2015. Eligible participants were 18+ years and provided written informed consent. After a 70/20/10 split in training, validation and test set, a quantile regression forest (QRF) was trained. Performance metrics were R‐squared (R2), mean squared error (MSE), root mean squared error (RMSE) and mean Winkler interval score (MWIS) with 90% prediction coverage (PC). Metrics 95% confidence intervals (CI) were calculated using a bootstrap approach. Variable contribution was analysed using SHapley Additive exPlanations (SHAP) values. Probable sarcopenia (PS) was defined according to the European Working Group on Sarcopenia in Older People 2 (EWGSOP2) criteria.
Results
Between 1 June 2015 and 23 November 2024, a total of 21 171 individuals were enrolled, of which 19 995 were included in our analyses. In the overall population, 11 019 (55.1%) were females. Median age was 56 years (IQR 47.0–67.0). Five variables were included: age, sex, height, weight and BMI. After the train/validation/test split, 13 996 subjects were included in the train set, 4199 in validation set and 1800 in the test set. For handgrip strength, the R2 was 0.65 (95% CI 0.63–0.67) in the validation set and 0.64 (95% CI 0.62–0.67) in the test set. PCs were 91.5% and 91.2%, respectively. For CST test, the R2 was 0.23 (95% CI 0.20–0.25) in the validation set and 0.24 (95% CI 0.20–0.28) in the test set. The PCs were 89.5% and 89.3%. Gender was the most influential variable for handgrip and age for CST. In the validation set, 23% of subjects in the first quartile for handgrip and 13% of subjects in the fourth quartile for CST test met criteria of PS.
Conclusions
We developed and validated a QRF model to predict subject‐specific quantiles for handgrip and CST. These models hold promise for integration into clinical practice, facilitating cost‐effective and time‐efficient early identification of individuals at elevated risk of sarcopenia. The predictive outputs of these models may serve as surrogate biomarkers of the aging process, capturing functional decline.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
Details



1 Department of Geriatrics, Orthopedics and Rheumatological Sciences, Fondazione Policlinico Universitario Agostino Gemelli, IRCCS, Rome, Italy, Department of Geriatrics, Orthopedics and Rheumatological Sciences, Università Cattolica del Sacro Cuore, Rome, Italy
2 Medical Oncology, Università Cattolica del Sacro Cuore, Rome, Italy