I want to perform a regression and first of all I want to test if my nullmodel is significant. So if not, I wont be able to perform the stepwise introduction according to AIC.
So I did the following:
m0 <- glm(Y~ 1, data = Data, family = binomial)
summary(m0)
So I have seen on the internet that some people use this code:
model <- glm(Y ~ .,data = Data, family=binomial)
summary(model)
What I want to know is whats the difference between the dot (.) and the 1.
Thank you :)