get_wald {jlctree} | R Documentation |
Computes the Wald test statistic. Not to be called directly by the user.
get_wald(f, data)
f |
a two-sided formula of the fitted survival model, with the longitudinal outcome being the first covariate on the right side of the formula. |
data |
a data.frame containing covariates in |
The Wald test statistic.
data(data_timevar);
f <- Surv(time_L, time_Y, delta)~y+X3+X4+X5;
get_wald(f, data_timevar);