Vignette Info

This example comes from the textbook section 12.6.4 (p 541). We compare a standard logistic regression analysis with a nonparametric combination of tests.

Standard Logistic Regression

library(permuter)
data(urology)

mod1 <- glm(group ~ ., family = binomial(link = "logit"), data = urology)
summary(mod1)
mod2 <- glm(group ~ ., family = binomial(link = "logit"), data = urology[, -ncol(urology)])
summary(mod2)
step(mod2)

To do: compare to some permutation method



statlab/permuter documentation built on May 30, 2019, 9:45 a.m.