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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -