juniorTime Series
What is time series data and how is it different from regular tabular data?
Updated May 15, 2026
Short answer
Time series data is ordered by time and depends on temporal relationships, unlike tabular data where rows are independent.
Deep explanation
Time series data consists of observations recorded sequentially over time, where ordering matters and past values influence future values. Unlike standard tabular ML datasets where samples are assumed independent and identically distributed (i.i.d.), time series violates this assumption. Temporal dependencies, trends, and seasonality are core characteristics that must be modeled explicitly.
Real-world example
Stock prices recorded every second depend on previous price movements.
Common mistakes
- Treating time series data as independent rows in a standard ML model.
Follow-up questions
- Why is i.i.d assumption violated in time series?
- What structures exist in time series data?