Measuring relationships and interpreting what they represent
Confusing correlation with causation is one of the most common and costly errors in applied data science. Models trained on correlations will fail the moment the correlation breaks — and it always eventually breaks. This separates a data scientist who builds robust systems from one who keeps being surprised when models degrade in production.
It appears in feature selection (correlated vs causal features), model interpretation (high coefficient ≠ causal), and business recommendations ("our model says X correlates with churn — should we change X?").
Two variables can move together for three reasons: X causes Y, Y causes X, or a third variable Z causes both. Correlation only tells you they move together — it says nothing about why.
The ice cream and drowning example: both rise in summer, not because ice cream causes drowning, but because hot weather (a confounder) causes both. Your model learns this correlation happily — then gives the wrong recommendation: "ban ice cream to prevent drowning."