some edit
This commit is contained in:
parent
ff0613b39f
commit
dc3f5779d9
|
|
@ -40,6 +40,7 @@ rq2_m1 = subset(rq2_m, loc<100000 & desc_len<10000)
|
|||
library(pROC)
|
||||
library(car)
|
||||
library(lme4)
|
||||
library(stats)
|
||||
|
||||
#setp models----------------
|
||||
#proj level---------------
|
||||
|
|
@ -56,6 +57,9 @@ gbg_1 = glmer(formula = is_dup ~
|
|||
family="binomial"
|
||||
)
|
||||
|
||||
AIC(gbg_1)
|
||||
BIC(gbg_1)
|
||||
|
||||
r.squaredGLMM(gbg_1)
|
||||
|
||||
vif(gbg_1)
|
||||
|
|
@ -88,6 +92,11 @@ gbg_2 = glmer(formula = is_dup ~
|
|||
family="binomial"
|
||||
)
|
||||
|
||||
|
||||
AIC(gbg_2)
|
||||
BIC(gbg_2)
|
||||
|
||||
|
||||
r.squaredGLMM(gbg_2)
|
||||
|
||||
vif(gbg_2)
|
||||
|
|
@ -127,6 +136,9 @@ gbg_3 = glmer(formula = is_dup ~
|
|||
family="binomial"
|
||||
)
|
||||
|
||||
AIC(gbg_3)
|
||||
BIC(gbg_3)
|
||||
|
||||
r.squaredGLMM(gbg_3)
|
||||
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue