statistics - Schoenfield residual test for discrete-time hazard model in R -
i have modeled discrete-time hazard model using following code:
(logit.full. <- glmer(event ~ + a1 + a2 + a3 + obsnum1 + obsnum2 + obsnum3 + (1 + obsnum1 + obsnum2 + obsnum3 | country_cluster), family=binomial("logit"), data=data.final))
now test model proportionality assumption inheritet in these types of discrete-time hazard models.
for continous time hazard models (cox models), tested schoenfield residual test. in r, test executed "cox.zph" command part of "survival" package.
does know possibility excecute test discrete-time hazard model in r?
Comments
Post a Comment