Skip to main content

K-means for shared frailty models

Abstract

Background

The purpose of this research was to see how the k-means algorithm can be applied to survival analysis with single events per subject for defining groups, which can then be modeled in a shared frailty model to further allow the capturing the unmeasured confounding not already explained by the covariates in the model.

Methods

For this purpose we developed our own k-means survival grouping algorithm to handle this approach. We compared a regular shared frailty model with a regular grouping variable and a shared frailty model with a k-means grouping variable in simulations as well as analysis on a real dataset.

Results

We found that in both simulations as well as real data showed that our k-means clustering is no different than the typical frailty clustering even under different situations of varied case rates and censoring. It appeared our k-means algorithm could be a trustworthy mechanism of creating groups from data when no grouping term exists for including in a frailty term in a survival model or comparing to an existing grouping variable available in the current data to use in a frailty model.

Peer Review reports

Introduction

The k-means algorithm was designed to find natural groupings amongst bivariate data, essentially creating order from disorder. The method has worked by finding the difference between initial group means and in a process, moving around these means until these distances are minimized. The idea first goes back to Hugo Steinhaus [1] in 1956. He was a Polish mathematician who first came up with the idea as written in his paper. MacQueen also came up with a k-means clustering algorithm by 1967 that is now also used extensively [2] and focused on setting means and finding the centroid of each partition by minimizing sums of squares to the cluster centers, but setting the initial means was never specified. Later on, borne out of signal processing in engineering to partition n observations into k clusters, the first standard algorithm was proposed by Stuart Lloyd of Bells Labs [3]. Lloyd’s work was also known as the Voroni iteration. His iteration focused on finding even set of points in Euclidean partitions and would also would repeatedly find the centroid of each partition and would repeat these operations until finding the centroid that was closet. This type of idea also helped to form the basis behind the k-means algorithm.

The k-means algorithm works to minimize the squared Euclidean distances between clusters. Different variations of this idea have come to fruition over time and several of these proposed algorithms are still used. Even the Expectation-Maximization algorithm was modified in use for this purpose. Of course utilizing different methods of minimizing the distances may produce different results.

In survival analysis, frailty models have allowed incorporating unexplained heterogeneity at the individual level and grouping level [4, 5]. Specifically at the grouping level, there was unmeasured heterogeneity or confounding between groups or clusters of individuals. The models for these were then called shared frailty models. Sometimes, grouping of individuals was available in the data at hand and that natural grouping can be used in the shared frailty model. However, often such term is not available to cluster the individuals but yet, it may suffice that some kind of grouping should be imposed on these individuals in order to model the frailty between them. This idea motivated us to utilize the k-means algorithm to create natural grouping between individuals, which then could be used in a shared frailty model to allow for modeling the heterogeneity between them.

Methods

K-means algorithm for survival

In general, the k-means algorithm typically has started with defining number of clusters to partition a priori. In our k-means algorithm for survival, we have allowed making this decision at anywhere between 3 and 5 groups or clusters. Our algorithm then utilized the Euclidean distances between a given pair, x and y, which are randomly chosen existing data points which will become the initial centroids from which to start the algorithm. A typical Euclidean distance formula for the k-means algorithm has been [1,2,3]: \(\mathrm{Distance}=\sqrt{\sum_{\boldsymbol{i}=\mathbf{1}}^{\boldsymbol{n}}{\left({\boldsymbol{x}}_{\boldsymbol{i}}-{\boldsymbol{x}}_{\boldsymbol{c}}\right)}^{\mathbf{2}}+{\left({\boldsymbol{y}}_{\boldsymbol{i}}-{\boldsymbol{y}}_{\boldsymbol{c}}\right)}^{\mathbf{2}}}\), and we modified this formula for the k-means algorithm to be the following for survival data, where we calculate the Euclidean distances between x being a main predictor which is continuous and y being a survival time, ti, at each ith observation:

$$Survival\ Distance=\sqrt{\sum_{i=1}^n{\left({x}_i-{x}_c\right)}^2+{\left({t}_i-{t}_c\right)}^2}$$
(1)

We then calculated the distance from each data pair of x and survival time for each centroid. Next we sorted the distances and reassign data points to the initial centroids to which they are closest. We then calculated the mean centroid of these groups which became the new centroids for the main continuous predictor and survival time as μx and μt respectively. We then repeated the step of calculating the Euclidean distance between each data point pair and the current centroids which starts the loop.

$$Updated\ survival\ Distance=\sqrt{\sum_{i=1}^n{\left({x}_i-{\mu}_x\right)}^2+{\left({t}_i-{\mu}_t\right)}^2}$$
(2)

We would then calculate this distance and then find the (x,t) pair that corresponded to the minimum distance. Those points would then become the new centroids and the step would be repeated over again until the distance between the current centroids and the newly selected centroids became zero. If this step was not obtained in 10 iterations then the loop was completed at 10 iterations and the last set of centroids were then used. These final set of centroids are what help define the grouping variable to be used in a shared frailty model then referred to as a k-means frailty model.

Cox shared frailty model with smoothing

Survival models, in general, are used to model time to some event. In this application we focus, in particular, on the Cox proportional hazards (PH) regression model with single events per subject. We incorporated a random effect term (frailty), incorporated into a shared frailty model, where frailty was modeled between groups. The frailty term allowed accounting for the unexplained heterogeneity between groups and this was accomplished by specifying a frailty distribution, which is typically modeled by a non-negative one, like a gamma,or log Gaussian distribution. We chose to allow the frailty distribution to have a log-normal distribution for these applications. Using a model as we previously described in a previous manuscript [6], we again incorporated a dichotomous treatment effect as a covariate and again included a continuous, prognostic variable, which then had a smoothing function on it to handle non-linearity as we have previously shown. In a Cox PH regression model this gave [6]:

$${h}_{ij}(t)={h}_0(t)\exp \left({x}_{ij}\beta +s\left({y}_{ij}\right)+{w}_i\right)$$
(3)

where the following terms are defined as: h0(t): baseline hazard rate, i = 1,…,c groups and j = 1,….,pi persons per group, xij: dichotomous treatment variable, yij: prognostic variable, which was age in our analyses, and s(yij): smoothed function of yij. In addition, we again included a log-normal frailty density for the grouping effect [6], similar to Duchateau et al [7]. In Eq.(3), the ith cluster was generated as the grouping variable either via the regular method with a variable already available in the dataset to cluster in a shared frailty model or through using our modified k-means clustering previously described procedure to define the groups. These models have been estimated through a penalized regression where the frailty term is treated like an additional covariate but are then penalized by a penalty term added to the log-likelihood according to Therneau et al [8].

From our prior research, we had learned that there are certainly many options for smoothing, and we previously looked extensively at restricted cubic splines, penalized splines, and even fractional polynomials in much detail. However, we again opted to use a natural spline (NS) function as the smoothing function, s(yij), because it is easier to implement and did well in our simulations [9, 10]. We have previously described and implemented in the ns function in R software. We described that natural splines have been essentially restricted cubic splines, and these use B-splines in the basis expansion of s(yij) [6, 9, 10],

$$s\left({y}_{ij}\right)={\gamma}_0{y}_{ij}+\sum \limits_{h=1}^{H-2}{\gamma}_h\cdot {B}_h\left({y}_{ij}\right)$$
(4)

where Bh(yij) the B-spline basis functions. These are described in further detail [9]. We again employed the ns function in R with df = 4, which happens to be the default degrees of freedom (df) in the software. We then compared this shared frailty model from the grouping using our modified k-means algorithm to groupings generated in simulations and we also compared these separate models in a real dataset application with groups defined by a pre-existing grouping variable already available in the dataset. In the next section, we have described our simulations.

Simulation framework

In this section, we utilized the simulation framework as described in our previous manuscripts [6, 9, 10], where we generated the survival data using methods that similar to those in Bender et al. [11], and described in more detail [9, 12] but adjusted to incorporate a grouping effect in the model. The equation below again represents the true generating model from the Cox PH model [6],

$$h\left(t|{x}_{ij},{y}_{ij},{w}_i\right)={h}_0(t)\exp \left({\beta}_T{x}_{ij}+s\left({y}_{ij}\right)+{w}_i\right)$$
(5)

As in our previous manuscripts we allowed for the following parameters which we describe in this section [6, 9, 10]. We allowed the subscripts i and j represent the grouping and person respectively [6]. We again allowed the coefficient βT to be that for the dichotomous treatment effect xij, again, using two treatment scenarios, βT = 1, and βT = − 1. We again allowed the s(yij) = log(yij) because this was the way to handle any non-linearity in the prognostic factor, yij. We again sampled yi j randomly with replacement where we again used an age range of 30 to 66 for the subjects. The grouping effect, wi, was also again generated from a N(0,σ2) distribution, with values of σ2 = 0.25 [2].

Again through Bender et al [11] similar to before [6, 9, 10], we again allowed for a baseline Weibull hazard [11, 13], where h0(t) = θν tθ ‐ 1. The survival times end up being found from this generating distribution, when solving that equation for survival time, which as we previously described [6, 9, 10] is using the relationship between the hazard, the survival, and the cumulative distribution functions Also, just like previously, the way this was obtained has been well described in our previous manuscripts [6, 9, 10].

Similar to our previous simulations setups [6, 9, 10], we again included a competing risk into the simulations. We described previously how the competing risk times were generated by employing an exponential distribution to obtain tcr, the competing risk time. Once we did this then we again found the observed survival time to be the minimum of either t0, tcr, and a pre-specified end-of-study time, τ, which we put as 20 years as previously described [6, 9, 10]. Also, in order to define right censoring for an observation, we said that an observations was censored if t0 was larger than the minimum of tcr and τ. The final simulated datasets ended up having the treatment varaible, the prognostic factor which was age, the survival times, the event indicators, and then the grouping numbers.

The regular shared frailty model was then compared to a k-means shared frailty model via different parameters through simulations by varying various parameters: number of groups (3, 4, or 5 and an additional 6, 7, or 8), rate of censoring (10% or 70%), case rate (0.0125 or 0.1), coefficient of treatment (− 1 or 1). These variations then led to having 24 possible scenarios and an additional 6 more (25-30) as observed in Table 1. In the comparisons, we used Akaike’s information criterion (AIC) to judge model goodness-of-fit and also the root mean square error (rMSE) [6, 9, 10], which was calculated between the smoothed predictions of the prognostic variable and the observed values of the prognostic variable for a given model in order to assess bias in the predicted and the observed.

Table 1 Scenario setup for simulations

All above programming was done in the R language [14]. We developed our modified k-means algorithm for survival in R and we utilized and conducted all other analyses in R as well.

Results

Simulation results

We have shown coefficients, standard errors, and p-values from the regular shared frailty model (Table 2) and from the k-means frailty model (Table 3). We have presented the coefficients and p-value for treatment (trt), the main predictor. Since a natural spline was fit on age in the model, to summarize this fit, instead of presenting the coefficients from each basis function, we have presented the average p-values from amongst the 4 basis functions. We can see that the trt coefficients, standard errors and p-values do not differ much between Tables 2 and 3, nor do the average basis coefficient p-values. However, we do see that the p-values for the frailty variances (Table 4) differs between the models, not initially, however, with increased group size of 5 or greater the frailty variances start showing more statistical significance,, and for the k-means frailty model, which became even smaller in this instance as compared to the regular shared frailty model. Somehow there was more heterogeneity in the k-means frailty models, which is interesting since it works to minimize error..

Table 2 Various estimates for regular shared frailty models from simulations
Table 3 Various estimates for k-means shared frailty model from simulations
Table 4 Mean MSE and AIC for regular & k-means shared frailty models from simulations

In Table 4, we also have laid out side by side comparisons of the AIC and MSE of each scenario compared between the regular shared frailty model and the k-means shared frailty model. We have seen the goodness-of-fit and the bias appear similar between the two different models for a given scenario for the most part. Though the groupings used in the frailty term in the separate Cox models were derived from different processes, k-means vs simulated grouping creation, the results showed many similarities between the two processes.

Higher case rate but more censoring seems to have led to a better model fit according to MSE which improved with increased group size while the AIC reflected better model fit for lower censoring and lower case rate. However, in general, the model fits for the regular frailty model or for the k-means frailty model compared to its true curve per scenario did not differ much as seen in Figs. 1, 2, 3 and 4. This reflects what has been seen in Table 4 with the MSE and AIC values for both models per scenario.

Fig. 1
figure 1

Simulation Scenarios 1 thru 8

Fig. 2
figure 2

Simulation Scenarios 9 thru 16

Fig. 3
figure 3

Simulation Scenarios 17 thru 24

Fig. 4
figure 4

Simulation Scenarios 25 thru 30

Real dataset example

We used a lung cancer dataset, which is freely available through the R software [14] in their available datasets in the library, survival. This dataset contained survival data in patients with advanced lung cancer from the North Central Cancer Treatment Group [15]. Performance scores rated how well the patient can perform usual daily activities. We were able to model a shared frailty model using the grouping variable, institution, and a k-means frailty model with grouping provided by our modified k-means algorithm. For both models we ran them for k = 3,4,5,6,7 or 8 groups, to match groupings used in the simulations. We can see in Tables 5 and 6, no differences in treatment coefficients between groups or between models and very minor differences in basis coefficients between groups and models. Various estimates computed for these models and groups have further reflected minor to no differences between the methods, similar to the simulations (Table 6), however there did appear to be more heterogeneity in the regular shared model than the k-means shared model as reflected through the frailty variance. This was opposite of what we had seen in the simulations but seems more consistent with how the k-means works in minimizing variability to create groupings. In addition, the AIC reflected a somewhere better fit for the regular shared frailty models while the MSE reflected a closer fit between observed and predicted for the k-means than the regular shared frailty model. The graphs for the log(HR)‘s of the prognostic factor, age, in Figs. 5 and 6 also reflected the closer fits between the observed age and the predicted HRs from the two different frailty models. All curves were overlapping for each cluster size, 3-8.

Table 5 Parameter estimates and measures of fit from lung dataset example for regular and k-means shared frailty models for 3 -5 groups
Table 6 Parameter estimates and measures of fit from lung dataset example for regular and k-means shared frailty models for 6 -8 groups
Fig. 5
figure 5

Real dataset plots for estimated log(HR) for truth compared to model fits by number of groups: 3-5

Fig. 6
figure 6

Real dataset plots for estimated log(HR) for truth compared to model fits by number of groups: 6 - 8

Discussion

Through our research, we attempted to bridge a gap between unsupervised learning and statistical modeling of time-to-event data by combining the k-means algorithm with survival models, namely shared frailty models. We first created our own version of the k-means algorithm by adapting it to use survival time and one main continuous predictor. We then demonstrated comparing a regular shared frailty model with a regular grouping variable and a shared frailty model with a grouping variable created through our modified k-means algorithm for survival. We did this first through simulations and then on analysis of a real dataset. We found that our modified k-means clustering appeared no different than the typical frailty clustering even under different situations of varied case rates and censoring and perhaps had created groups that had roughly the same or less amount of heterogeneity between groups.. Therefore our modified k-means algorithm could be employed as a mechanism of creating groups from data for including in a frailty term in a survival model when there is no grouping variable available, which is the case in many survival datasets, or for comparing to an existing grouping variable used in a frailty model. Some limitation may be to know how many groups or clusters to create but one can always conduct several iterations of using our k-means algorithm for such purpose and then decide using mean-squared errors and information criterion, similar to our analyses.

Conclusions

We were able to demonstrate that through our modified k-means algorithm for survival data that our k-means approach for survival data could be used to create groupings in data where there was no pre-existing grouping variable, and therefore, this grouping terms could be implemented in a shared frailty model setting to capture unexplained heterogeneity not captured by covariates. We had compared this with a regular grouping term in simulated data as well as a real dataset and found there were no significant differences between our approach and the more conventional approach. Therefore, we recommend use for our approach when an investigator would like to implement a frailty model with survival data but do not have a clear grouping term available in the data to run such a model.

Availability of data and materials

Dataset is available in the R software. All data generated or analyzed during this study are included in Loprinzi et al (see References).

References

  1. Steinhaus H. Sur la division des corp materiels en parties. Bull Acad Polon Sci. 1956;1:801–4.

    Google Scholar 

  2. MacQueen JB. Some methods for classification and analysis of multivariate observations, vol. 1. Berkeley: University of California Press; 1967. p. 281–97.

  3. LLoyd SP. Least squares quantization in PCM. IEEE Trans Inf Theory. 1982;28(2):129–37.

    Article  Google Scholar 

  4. Govindarajulu US, D'Agostino Sr. RB. Review of current advances in survival analysis and frailty models. WIREs Comput Stat. 2020;12:e1504. https://doi.org/10.1002/wics.1504.

  5. Govindarajulu US, Lin H, Lunetta KL, D'Agostino RB Sr. Frailty models: applications to biomedical and genetic studies. Stat Med. 2011;30(22):2754–64.

    Article  Google Scholar 

  6. Govindarajulu US, Malloy EJ. Evaluating treatment effect in multicenter trials with small centers using survival modeling. Int J Stat Med Res. 2015;4:17.

    Article  Google Scholar 

  7. Duchateau L, Janssen P, Lindsey P, Legrand C, Nguti R, Sylvester R. The shared frailty model and the power for heterogeneity tests in multicenter trials. Comput Stat Data Anal. 2002;40(30);603–20.

  8. Therneau T, Grambsch P, Pankratz V. Penalized survival models and frailty. J Comput Graph Stat. 2003;12(1):156–75.

    Article  Google Scholar 

  9. Govindarajulu US, Malloy EJ, Ganguli B, Spiegelman D, Eisen EA. The comparison of alternative smoothing methods for fitting non-linear exposure-response relationships with Cox models in a simulation study. Int J Biostat. 2009;5(1):Article 2.

    Article  Google Scholar 

  10. Govindarajulu US, Spiegelman D, Thurston SW, Ganguli B, Eisen EA. Comparing smoothing techniques in cox models for exposure-response relationships. Stat Med. 2007;26(20):3735–52.

    Article  Google Scholar 

  11. Bender R, Augustin T, Blettner M. Generating survival times to simulate cox proportional hazards models. Stat Med. 2005;24(11):1713–23.

    Article  Google Scholar 

  12. Malloy EJ, Spiegelman D, Eisen EA. Comparing measures of model selection for penalized splines in cox models. Comput Stat Data Anal. 2009;53(7):2605–16.

    Article  Google Scholar 

  13. Klein JM, M. Survival analysis: techniques for censored and truncated data. New York: Springer; 1997.

    Book  Google Scholar 

  14. R Core Team (2020). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. URL https://www.R-project.org/.

  15. Loprinzi CL, Laurie JA, Wieand HS, et al. Prospective evaluation of prognostic variables from patient-completed questionnaires. North central Cancer treatment group. J Clin Oncol. 1994;12(3):601–7.

    Article  CAS  Google Scholar 

Download references

Acknowledgements

None.

Funding

None.

Author information

Authors and Affiliations

Authors

Contributions

UG: concept, analyses, and writing; SB running simulations and making tables. All authors have read and approved the manuscript.

Corresponding author

Correspondence to Usha Govindarajulu.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

None.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Govindarajulu, U., Bedi, S. K-means for shared frailty models. BMC Med Res Methodol 22, 11 (2022). https://doi.org/10.1186/s12874-021-01424-5

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12874-021-01424-5

Keywords