Hello everyone,
I decided to apply the logistic regression method to my categorical and quantitative data.
So, I followed these steps:
- Eliminating the bad and inconsistent data.
-Preparing the target variable (qualitative variable).
-Testing the dependencies between categorical variables and the target variable using the Ki-2 test for selecting the variables that are well linked with the target variable.
-Testing the correlation between quantitative variables to avoid the choice of two correlated variables at a time.
-Crossing some variables to improve their significance.
After all this I do not find any significant variables in my logistic regression model knowing that the base is well coherent and well cleaned.
I work with the R language and I used the glm function:
glm (formula, family = familytype (link = linkfunction), data =)
Besides, I tested all types of family:
Family Default Link Function
binomial (link = "logit")
gaussian (link = "identity")
Gamma (link = "inverse")
inverse.gaussian (link = "1 / mu ^ 2")
fish (link = "log")
quasi (link = "identity", variance = "constant")
quasibinomial (link = "logit")
quasipoisson (link = "log")
Why then I can not find any significant variable in my model ???
Thanks,