Contents
Is no correlation bad?
There is no correlation between certain variables. Therefore, when there is no correlation then no need to run a regression analysis since one variable cannot predict another. Some correlation coefficient in your correlation matrix are too small, simply, very low degree of correlation.
Why is correlation significant but not regression?
Correlation and regression are different, but not mutually exclusive, techniques. Roughly, regression is used for prediction (which does not extrapolate beyond the data used in the analysis) whereas correlation is used to determine the degree of association.
What does a correlation of 0.30 mean?
A moderate downhill (negative) relationship. –0.30. A weak downhill (negative) linear relationship. 0. No linear relationship.
There are three main reasons why you would remove correlated features: Due to the curse of dimensionality, less features usually mean high improvement in terms of speed. The keyword being harmful. If you have correlated features but they are also correlated to the target, you want to keep them.
You do not want to remove all correlated variables. It is only when the correlation is so strong that they do not convey extra information. This is both a function of the strength of correlation, how much data you have and whether any small difference between correlated variables tell you something about the outcome, after all.
Are there any algorithms that benefit from correlation?
Some algorithms like Naive Bayes actually directly benefit from “positive” correlated features. And others like random forest may indirectly benefit from them. Imagine having 3 features A, B, and C. A and B are highly correlated to the target and to each other, and C isn’t at all.
When we have highly correlated features in the dataset, the values in “S” matrix will be small. So inverse square of “S” matrix (S^-2 in the above equation) will be large which makes the variance of Wₗₛ large. So, it is advised that we keep only one feature in the dataset if two features are highly correlated.