Question
Can someone answer (in as non-technical terms as possible) whether or not frailty models and robust sandwich variance estimators are trying to solve the same problem in different contexts? That problem being that estimated standard errors will be underestimated if correlation between groups is not accounted for.
Secondary to that, I know that invoking a robust sandwich estimator does not affect point estimates, is that the general idea with frailty models too?
Some context
I know for instance that in R's Survival
package when estimating the survival function via Kaplan-Meier, one can supply the argument cluster
to Survfit
, which will invoke a robust sandwich variance estimator.
On the other hand when performing cox proportional hazard regression, one can supply either a cluster
argument or a frailty
argument. I have tried both with a test dataset and a single variable and I note that outcomes are similar for both the estimated coefficient and the estimated standard error on the coefficient. This, along with some reading around the problem, led me to the belief that frailty models and robust sandwich variance estimators are trying to solve the same problem.