I am reading an article that explores correlation between two variables, X and Y. Usually, if the scatter plot show something like this, we can claim that there is a strong correlation of X and Y.
Y
|
| o
| o o
| o
| o o
| o
| o
| o
+--------------------->X
What about the following case?
Y
| o o
| o o
| o oo
| o o
| oo o
| o o
| o o
| o oo o oo oo o o o oo
+--------------------->X
x1 x2
Basically, the scatter plot show strong clustering and spikes around a few data point along X axis, e.g. x1 and x2.
What kind of statistical property does this imply?
xandycould be entirely independent. Try runningplot(rnorm(20000, rep(1:2, each=10000), .2), rlnorm(20000, 0, .8))in R. It'll look roughly similar to your figure, even thoughxandyare perfectly independent. – David Robinson Sep 18 '12 at 19:38