What Makes Data a Time Series?
P7.ts-foundations.01 · Audience: guest, it-ml, language-pro
Everything in Traditional Machine Learning rested on one quiet assumption: the rows of your table are exchangeable. Shuffle them, split them, sample them — nothing of value is lost, because each row is a self-contained observation. This pillar is what happens when that assumption is dropped. In a time series the rows come in a fixed order, and the order itself carries the information: yesterday genuinely helps predict today. Shuffle a time series and you have not tidied your data — you have destroyed the signal.
A time series is a sequence of measurements of the same thing, taken at regular intervals, kept in order: daily sales of a shop, hourly temperature at a weather station, monthly passengers on an airline. Two properties separate it from the tabular data of the previous pillar. First, the observations are not independent — today's sales are strongly related to yesterday's. Second, the position of a value matters — "sales were 120" means something different in December than in a flat week of February.
🗣️ From a linguist's perspective: A time series is a text, not a bag of words
ⓘ Concept: Time series
Why it matters — Almost every business quantity worth forecasting — sales, traffic, demand, temperature, exchange rates — arrives as a time series. Treating it as ordinary tabular data silently breaks both the model and, worse, the evaluation that was supposed to catch the broken model.
Ask the mentor about this module
Ask a question about this content. The mentor explains and grounds its answer in what you are studying; asking is recorded as a learning signal, not a grade.
Try it yourself
A scratch console for this page's ideas — ungraded, nothing you run here is recorded.
Scratch console
A scratch console with the scientific stack (pandas, numpy, scikit-learn). Runs on the server — no network, resource-limited and measured.
Output appears here.
Where next?
Later in Time-Series Foundations
This module unlocks