Statistics & Data Science · pattern F, Dataset
Paste your x and y pairs, one per line, for Pearson's correlation coefficient, r², and the covariance sums a marker expects to see written out.
r = Σ(x − x̄)(y − ȳ) ÷ √[Σ(x − x̄)² × Σ(y − ȳ)²]
One pair per line, separated by a comma, tab or space. Lines that do not contain two numbers are ignored.
0.9949
n = 8 pairs · r = 0.9949 · r² = 0.9899 — strong linear association
41.0073.00
1b = Σ(x−x̄)(y−ȳ) ÷ Σ(x−x̄)² = 588.000 ÷ 378.000 = 1.55556
the slope is the covariance of x and y over the variance of x
2a = ȳ − b·x̄ = 58.000 − 1.55556·22.500 = 23.00000
the line passes through the point of means
3r = 0.99494, r² = 0.98990
r² is the share of variation in y explained by x
Pearson's r measures how closely the points follow a straight line, so a perfect parabola can return an r near zero while being entirely determined. Always plot the data before quoting the coefficient. And r says nothing about which variable causes the other, or whether a third variable drives both — the standard caution exists because the mistake is genuinely easy to make in a discussion section.
If the number is not the part you are stuck on, that is what the service is for — a specialist who explains the working, not just the answer.
Statistical output here is for coursework and learning. Reported p-values and intervals assume the conditions stated on the page; nothing here checks whether those conditions hold for your data.