Predictive analytics in business intelligence applies statistical algorithms, machine learning techniques, and historical data to forecast future outcomes and identify trends. It sits at the intersection of data science, BI tools, and business strategy, transforming raw data into actionable foresight that drives proactive decision-making. Unlike descriptive analytics that explains what happened, predictive analytics answers what will likely happen and why. The key mental model to remember: predictive analytics builds mathematical representations of reality (models) that capture patterns from the past to project into the future—but model quality depends entirely on data quality, feature selection, and validation rigor.
What This Cheat Sheet Covers
This topic spans 17 focused tables and 116 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
Table 1: Regression Techniques
| Technique | Example | Description |
|---|---|---|
y = β0 + β1x + εsales = 50 + 3*ads + error | • Predicts continuous outcomes by modeling linear relationship between dependent and independent variables • foundational method using ordinary least squares. | |
y = β0 + β1x1 + β2x2 + ... + βnxnsales = 50 + 3*ads + 2*season | • Extends simple linear regression to multiple predictors simultaneously • each coefficient represents the effect of one variable holding others constant. | |
y = β0 + β1x + β2x² + β3x³revenue = 10 + 5*time + 0.2*time² | • Models nonlinear relationships by adding polynomial terms • captures curved patterns but risks overfitting with high-degree polynomials. | |
Loss = MSE + λ∑β²alpha=1.0 in sklearn | • Adds L2 penalty to reduce coefficient magnitudes • prevents overfitting by shrinking coefficients toward zero without eliminating features entirely. |