Low P value in Chi-squared test but low coefficient in logistic regression

I ran a chi squared test on multiple features also used these features to build a binary classifier using logistic regression. The feature which had the least p value (~0.1) had a low coefficient (=0) whereas the feature which had a higher p value (~0.3) had a high coefficient (~2.9). How do I interpret this?

Is it possible for a feature to have low p value but have zero coefficient?

Topic chi-square-test pvalue machine-learning-model

Category Data Science


The magnitude of the coefficients is not to be considered while finalizing a model. The magnitude of the coefficient should be completely ignored while choosing them.

Also, the significant coefficients will not be zero, they can be low numbers, if you want to see higher numbers transform the same variable by doing *100 across the whole variable, the coefficient will come out to be a higher magnitude number.

Low p-value variables are significant even if their coefficient is low.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.