r glm pilih semua variabel

#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