currently I'm performing a logistic regression and I'm not sure which link function I should use. I have a binary response variable (Dead/Alive) and ten potential explanatory variables. I fitted a full model with all variables and used a stepwise selection procedure (step in R + drop1) to find out which predictors are significant.
However, first I used a logit link, because it's the way I learned it. I found two significant predictors but the overall fit wasn't good anyway. Now I tried the complementary log-log link and after the model selection there are three significant predictors and the fit is a bit better. Now my question:
Which model should I use? Is it actually allowed to use the cloglog in my case?
And if I should use the cloglog model, how do I interpret the output? Is it the same like in logit models? I didn't find any detailed interpretation of a cloglog model.
You find my two final model outputs below!
I would be very pleased if somebody can help me.
Cheers, breez
################Logit##############
glm(formula = Dead ~ Temp + Blood, family = binomial, data = a2f)
Deviance Residuals:
Min 1Q Median 3Q Max
-1.7571 -0.8384 -0.5626 0.7597 1.9604
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 176.20 on 136 degrees of freedom
Residual deviance: 148.66 on 134 degrees of freedom
(2 observations deleted due to missingness)
AIC: 154.66
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 176.20 on 136 degrees of freedom
Residual deviance: 138.39 on 130 degrees of freedom
(2 observations deleted due to missingness)
AIC: 152.39
Thank you very much for the link! It helps already a little.
However, maybe somebody can tell me if I'm correct with my interpretaion of ß:
For example the estimate of ß for Temp is 0.19745
Therefore 1-(EXP(-EXP(-0,19745))) = 0.559929871. That means the hazard or relativ risk to die is increasing about 56% per unit increase of the temperature if all other variables were held constant?
Hi everyone!
I arrived here because I read (Chan, Y.H. (2005). Multinomial logistic regression. Singapore Medical Journal, 46(6), 259-270) that in ordinal regression it is recommended to use the complementary log-log link function when higher caterories are more probable. However, the author does not discuss how to interpret the model's results and only says that "there is no direct interpretation of the estimates due to the complicated nature of the link".
Therefore it would be very usefull for me to know if breez86's interpretation is correct.
Thank's very much in advance!