Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I am trying to ascertain if a relationship exists between hours of play and number of friends. I have two contexts for the study: "at school" and "at a place other than the school".

My data set relates to the "at school" context and the correlation r=0.8766 (significant).

Now the difficult part....

As I want to focus on the same group of students for the "at a place other than the school" context, I have asked a question that filters my respondents and puts them in the "at a place other than the school context".

The question is: Did you make any friends in the last three weeks? The answer can be either "yes" or "no". If it is yes, then I have asked them to indicate whether they made the friends "at the school", "at a place other than the school" or "at both places".

So I have four data sets as follows:

  1. Those who did not make any friends
  2. Those who made one or more friends at the school
  3. Those who made one or more friends at a place other than the school
  4. Those who made one or more friends at both places (i.e. school and a place other than the school)

I have ignored data set 1 because there is obviously no relationship between hours of play and number of friends because no new friends are made.

I have also ignored data set 2 because I already have this finding (in the correlation above, which was at the school)

I have also ignored data set 4 because it does not distinguish between "at school" and "at a place other than the school".

I have used data set 3 and worked out the correlation, which is 0.7687 (significant). My interpretation of this finding is the relationship between hours of play and number of friends exists at the school and also outside the school.

Does this make sense?

share|improve this question

2 Answers

up vote 4 down vote accepted

But in group 1, those people did go to school and did go somewhere else. So you are throwing away observations/information and potentially biasing your results. Did people in this group not make friends because they didn't play much? Or did they play a lot, but still didn't make friends? These two possibilities play out very differently for calculating your correlation.

Ideally, you would want, for each kid, the number of hours of play at school, number of hours of play somewhere else, number of friends made at school, number of friends made somewhere else. You don't have that; you only have total friends made.

You could do a regression of total friends made on hours of play at school and hours elsewhere. This gives you the impact of an hour of play on friend making for each location. You can compare the estimated impacts/coefficients to see if they are the same. Regression coefficients essentially measure correlation between your outcome (friend making) and your predictor (hours at a particular place) holding other stuff fixed (hours at the other place). That's the approach that I'd try.

share|improve this answer
thanks for the helpful answer. Can I just focus on data set 3 because that is the "at a place other than the school" group. I am targeting this group. This is on the basis that I am not comparing the "at school" and the "at a place other than the school" groups - I just want to say that the relationship between hours of play and number of friends also exists/does not exist at a place other than the school. Also, is Pearson's correlation more appropriate because I am focussing on relationship. – Adhesh Josh Sep 14 '11 at 20:56
No, as I said and as @StasK illustrates, if you only focus on people who actually made friends, you are biasing your answer. The only way to get an unbiased answer is to include everyone---not just group 3, but 1, 2, 3, and 4. It would be like excluding sunny days from analyzing the amount of rain fall and whether someone carries an umbrella---to you, it would look like everyone carries an umbrella every day no matter how much rain comes. But that's because you would only be looking at days with some rain. Look at all days and you see that rain matters. – Charlie Sep 14 '11 at 21:46
If you use a regression, it gives its own results and the different types of correlation aren't relevant. – Charlie Sep 14 '11 at 21:47

Your results certainly suffer from sample selection bias. You do not have a random sample of kids who made friends out of school; you only have a random sample of children (at best; the original sample may have had its own biases). By selecting a subsample for analysis that is based on what the subjects have chosen to do (or were forced to by the parents choice), you confound your "significant correlations" with whatever factors were relevant for the original choice. E.g., in a family with both working parents, the child has to attend an after-school program for pretty much a fixed amount of time, and may be making friends there. Generally, restricting your sample based on the response variable is a very poor idea. Consider this:

    x <- runif(1000)
    y <- x + rnorm(1000,mean=0,sd=0.15)
    lm(y~x)
    lm(y[y>0.5]~x[y>0.5])
    lm(y[x>0.5]~x[x>0.5])

The regression coefficient is 0.65-ish instead of 1 in the second regression; there aren't any problems in the second regression, except for lower power, of course.

I would analyze the whole data set as a Poisson regression with hours of play as an offset variable, and settings as additional explanatory variables (i.e., they increase proportionaly the rate of "friend-making"). May be as a zero-inflated Poisson regression, if there are any characteristic of the child or the location that preclude them from making friends (e.g., walkable vs. car-only neighborhoods).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.