4 - Correlation Flashcards

1
Q

What is correlation?

A

A way of measuring the extent to which 2 variables are related - a change in one variable results in a change in another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is covariance?

A

Measures the direction of the relationship between 2 variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the variance?

A

A measure of how much scores deviate from the mean for a single variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the difference between variance and covariance?

A

Variance gives the measure of how much scores deviate from the mean of a single variable. Covariance tells us how much scores on 2 variables differ from their respective means

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a major problem faced when using covariance and how can we solve it?

A

Problem: covariance depends on the unit of measurement
Solution: standardize it by dividing by the standard deviations of both variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the correlation coefficient?

A

The standardized version of the covariance.
AKA. Pearson’s Correlation Coefficient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the range of values for correlation?

A

[-1, 1] where 0 indicates no relationship

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the effect sizes associated with correlation?

A

0.1 is a small effect.
0.3 is a medium effect.
0.5 is a large effect.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the function cor.test() used for?

A

To test the null hypothesis that the correlation in the population is 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the third-variable problem?

A

In any correlation, the causality between 2 variables cannot be assumed because there may be other measured or unmeasured variables affecting the results.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Do correlation coefficients say anything about which variable causes a change in the other?

A

No. Correlation is different than causation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the assumptions of Pearson’s Correlation?

A

Data is on an interval or ratio scale.
Data is normally distributed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What alternatives are there for Pearson’s Correlation Coefficient, and when are they used?

A

Spearman’s rho and Kendall’s tau are used when the data is non-parametric.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a partial correlation?

A

A measure of the relationship between 2 variables, controlling for the effect that a third variable has on the other 2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a semi-partial correlation?

A

A measure of the relationship between 2 variables, controlling for the effect that a third variable has on only one of these.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you run a partial correlation test in R?

A

Using the pcor.test() function.