1

I'm wondering: Is there a statistical test for determining "no correlation"? I would not want to use Fisher's transformation.

kjetil b halvorsen
  • 63,378
  • 26
  • 142
  • 467
  • In general, you can't "prove" a point null for a continuous parameter (since you can get arbitrarily close alternatives), nor can you flip null and alternative (you can't calculate the distribution under the original unspecified alternative -- now the null, and the limiting case is actually the alternative!) . This is the subject of many questions on site. – Glen_b Jul 26 '16 at 23:57
  • e.g. See http://stats.stackexchange.com/questions/6225/is-it-possible-to-prove-a-null-hypothesis – Glen_b Jul 27 '16 at 00:06
  • A possibility is to abandon the hopeless task of trying to prove a point null for a continuous parameter and look instead at equivalence testing (of which there are a number of posts on site). In essence this would require you to define an interval of small correlations you regard as "effectively equivalent to zero" – Glen_b Jul 27 '16 at 00:09
  • If you believe the marked duplicate doesn't answer your question, please more carefully differentiate it from that one – Glen_b Jul 27 '16 at 00:10
  • thanks glen, i wish the model powering question recommendations improve –  Jul 27 '16 at 00:33
  • but i have 2 variables that are clearly weakly correlated. I just want to concretely show that they weakly correlated (i get a spearman of like -0.1). –  Jul 27 '16 at 00:34
  • That sounds like you want to set upper and lower bounds on the population correlation that are close to zero... and that sounds just like an equivalence test, which I have already mentioned. You may like to edit your question as already requested, and it might not then be a duplicate of the indicated question and could reopen on that basis. (However such a question may still close as a duplicate of one of our other questions) – Glen_b Jul 27 '16 at 00:39
  • I have reopened as not a duplicate based on your comments, but if your question isn't asking what it currently appears to be asking, it now requires a good deal of clarification. Please edit. – Glen_b Jul 27 '16 at 00:49

2 Answers2

2

"No correlation" means r=0.00000000000000000... that is almost never the case and never of practical interest. You could define, how small an r is "as small as to be zero for practical purposes". Computing correlation indices in statistics software will give you a confidence interval for the correlation coefficient.

If you say, that abs(r)<.10 you can compute the confidence interval and see, if it includes only values that meet that requirement.

Bernhard
  • 7,419
  • 14
  • 36
  • yea, compute CI and if 0.0 in CI - conclude no correlation: makes sense –  Jul 26 '16 at 20:01
  • @sponge If 0 is in the CI and you conclude that the correlation is 0 on that basis, how is that substantively different from failing to reject in a hypothesis test? – Glen_b Jul 27 '16 at 00:07
  • CIs measure how confident that 0 would appear given an infinite number of reptitions of the same exp. We're not testing a hypothesis here. –  Jul 27 '16 at 00:30
  • @sponge 1. if you use the CI to conclude the correlation is 0 (in your own words, "no correlation") that's using the CI to do a hypothesis test. $\:$ 2. If you're not actually interested in testing, why does your title say "test for no correlation"? ... perhaps you should clarify your question. – Glen_b Jul 27 '16 at 00:45
  • My proposal is not to check, whether zero is within the CI, but whether only small correlations are within the CI. – Bernhard Jul 27 '16 at 11:30
0

R values range from -1 to 1. A value of -1 indicates a completely negative correlation, and 1 indicates a completely positive correlation. The distribution for the correlation coefficient is not normally distributed, and its variance is not constant. Fisher's transformation attempts to solve this problem, which allows us to compute the confidence interval. Determining correlation and no correlation would depend on your confidence interval. This interval defines a range that estimates that values of r that are likely to contain unknown. This is useful because it provides a range of potential values for r given an unknown. Otherwise you are simply left with a number from -1 to 1, and you have to make a personal decision if it correlated. Is .5 a correlation, what about .4? I would consider that something interesting when examining data, but its not enough to definitely say yes this is the golden relationship. Confidence interval gives us a mathematical way to say yes or no under given criteria which is what is lacking in the correlation equation.

The CI is calculated using the mean and standard deviation. For variance uses size and sample size and for this, CI cannot be calculated directly. Fisher's transformation provides an indirect calculation that can be be made for CI. This is why most of the Fischer problems from your stats books solve for or give CI.

MikeB0317
  • 9
  • 5