Last chance! 50% off unlimited learning
Sale ends in
repolr
, function polycuts
gives estimates and standard errors for the K-1 cut-point parameters, based on the polynomial model from the fit of repolr
. Polynomial cut-point parameter estimates from the orginal model are also shown.
polycuts(object, digits = 3, robust.var = TRUE)
repolr
.TRUE
standard errors are based on robust variance estimates, otherwise naive estimates are used.repolr
.
data(HHSpain)
mod.0 <- repolr(HHSpain~Sex*Time, data=HHSpain, categories=4, subjects="Patient",
times=c(1,2,5), corr.mod="uniform", alpha=0.5)
summary(mod.0)
mod.1 <- update(mod.0, poly=1)
summary(mod.1)
polycuts(mod.1)
mod.2 <- update(mod.0, poly=2)
summary(mod.2)
polycuts(mod.2)
Run the code above in your browser using DataLab