Calculate Pearson's r, covariance, and visual regression.
Follow the math step-by-step to see how Pearson's r is derived from your data.
The Pearson correlation coefficient (r) measures the linear relationship between two datasets. It ranges from -1 to 1.
Where n is the number of pairs, Σxy is the sum of the products of paired scores, and Σx, Σy are the sums of the x and y scores respectively.
Note: Correlation does not imply causation. A strong correlation only means the variables move together, not that one causes the other.
R² is literally the square of the correlation coefficient (r). It is expressed as a percentage or a decimal from 0 to 1.
Meaning: It represents the proportion of the variance in the dependent variable (Y) that is predictable from the independent variable (X).
Example: If r = 0.8, then R² = 0.64. This means 64% of the variation in Y can be explained by the variation in X.