🎉 75% of content is free forever — Unlock Premium from $10/mo →
CW
Search courses…
💼 Servicesℹ️ About✉️ ContactView Pricing Plansfrom $10

Pearson Correlation — r Coefficient Formula and Testing

Foundations of StatisticsDescriptive Statistics🟢 Free Lesson

Advertisement

Pearson Correlation

Descriptive Statistics

The Gold Standard for Measuring Linear Association

Pearson's r measures the strength and direction of the linear relationship between two continuous variables. It is the most widely used correlation coefficient in all of statistics.

  • Bounded between -1 and +1 — Easy to interpret at a glance
  • Unitless — Compare correlations across completely different scales
  • Hypothesis testing — Test whether a observed correlation could have come from no relationship
  • Causation warning — Correlation never proves causation; remember this always

Pearson r is powerful, but it only measures linear relationships. Always visualize before you calculate.


What is Pearson Correlation?

Definition

Pearson's measures the strength and direction of the linear relationship between two continuous variables.


Definition


Properties of


Coefficient of Determination

is the proportion of variance in explained by the linear relationship with .


Hypothesis Testing for Correlation

Fisher's -transformation converts (which has a skewed distribution for ) to an approximately normal variable, enabling valid confidence intervals:

Transform back: .


Interpretation Guidelines

Interpretation
Very weak
Weak
Moderate
Strong
Very strong

Assumptions

AssumptionWhat It MeansHow to Check
LinearityThe relationship between and is linearScatter plot
Continuous variablesBoth and are measured on interval or ratio scalesVariable type
Bivariate normality follow a bivariate normal distributionQ-Q plots; Shapiro–Wilk
HomoscedasticityVariance of residuals is constantResidual plot
No significant outliersOutliers can distort dramaticallyScatter plot; influence analysis

Limitations

When assumptions are violated, use:

  • Spearman's rank correlation () — for monotonic (not necessarily linear) relationships
  • Kendall's — for ordinal data or small samples
  • Distance correlation — detects any dependence, not just linear

Pearson Correlation in Machine Learning

ML ApplicationCorrelation UsageWhy
Feature selectionHigh corr with target → importantIdentify predictive features
MulticollinearityHigh corr between features → removeStability of linear models
Feature engineeringCreate interaction featuresCorrelated pairs suggest interactions
Data validationCheck feature-target relationshipSanity check before modeling
import numpy as np
import pandas as pd
from sklearn.datasets import make_regression

X, y = make_regression(n_samples=200, n_features=5, noise=10, random_state=42)
df = pd.DataFrame(X, columns=[f'X{i}' for i in range(5)])
df['target'] = y

# Correlation with target
corr_with_target = df.corr()['target'].drop('target')
print("Correlation with target:")
print(corr_with_target.sort_values(ascending=False).round(3))

# Remove highly correlated features
corr_matrix = df.drop('target', axis=1).corr().abs()
upper = corr_matrix.where(np.triu(np.ones(corr_matrix.shape), k=1).astype(bool))
high_corr = [(i, j) for i in upper.columns for j in upper.columns 
             if upper.loc[i,j] > 0.8]
print(f"\nHighly correlated feature pairs (|r| > 0.8): {high_corr if high_corr else 'None'}")

Key Takeaways

Need Expert Statistics Help?

Get personalized tutoring, project support, or professional consulting.

Advertisement