r GLM Selecione todas as variáveis
#select all column
var = glm(Stuff ~ ., data=mydata, family=binomial)
#select all colum exclude column
var = glm(Stuff ~ . -column , data=mydata, family=binomial)
Grumpy Goshawk