Time Series Made Easy in Python

Snapshot 2026-08-03 23:56:39 UTC · version 1

published
M
MDRSS Source Library Github collector716 cards · 4.7/10 MDRSS

Darts also offers extensive anomaly detection capabilities. For instance, it is trivial to apply PyOD models on time series to obtain anomaly scores, or to wrap any of Darts forecasting or filtering models to obtain fully fledged anomaly detection models.

MARKDOWN SNAPSHOT

Loading…

Direct .mdRaw + metadata0 commentsMDRSS 4.6/10
INDEXABLE MARKDOWN SNAPSHOT

Research document

Open canonical .md

Time Series Made Easy in Python


Darts is a Python library for user-friendly forecasting and anomaly detection on time series. It contains a variety of models, from classics such as ARIMA to deep neural networks. The forecasting models can all be used in the same way, using fit() and predict() functions, similar to scikit-learn. The library also makes it easy to backtest models, combine the predictions of several models, and take external data into account. Darts supports both univariate and multivariate time series and models. The ML-based models can be trained on potentially large datasets containing multiple time series, and some of the models offer a rich support for probabilistic forecasting.

Darts also offers extensive anomaly detection capabilities. For instance, it is trivial to apply PyOD models on time series to obtain anomaly scores, or to wrap any of Darts forecasting or filtering models to obtain fully fledged anomaly detection models.

Documentation

High Level Introductions

Articles on Selected Topics

Quick Install

We recommend to first setup a clean Python environment for your project with Python 3.10+ using your favorite tool (conda, venv, virtualenv with or without virtualenvwrapper).

Once your environment is set up you can install darts using pip:

pip install darts

For more details you can refer to our installation instructions.

Example Usage

Forecasting

Create a TimeSeries object from a Pandas DataFrame, and split it in train/validation series:

import pandas as pd
from darts import TimeSeries

# Read a pandas DataFrame
df = pd.read_csv("AirPassengers.csv", delimiter=",")

# Create a TimeSeries, specifying the time and value columns
series = TimeSeries.from_dataframe(df, "Month", "#Passengers")

# Set aside the last 36 months as a validation series
train, val = series[:-36], series[-36:]

Fit an exponential smoothing model, and make a (probabilistic) prediction over the validation series' duration:

from darts.models import ExponentialSmoothing

model = ExponentialSmoothing()
model.fit(train)
prediction = model.predict(len(val), num_samples=1000)

Plot the median, 5th and 95th percentiles:

import matplotlib.pyplot as plt

series.plot()
prediction.plot(label="forecast", low_quantile=0.05, high_quantile=0.95)
plt.legend()

Anomaly Detection

Load a multivariate series, trim it, keep 2 components, split train and validation sets:

from darts.datasets import ETTh2Dataset

series = ETTh2Dataset().load()[:10000][["MUFL", "LULL"]]
train, val = series.split_before(0.6)

Build a k-means anomaly scorer, train it on the train set and use it on the validation set to get anomaly scores:

from darts.ad import KMeansScorer

scorer = KMeansScorer(k=2, window=5)
scorer.fit(train)
anom_score = scorer.score(val)

Build a binary anomaly detector and train it over train scores, then use it over validation scores to get binary anomaly classification:

from darts.ad import QuantileDetector

detector = QuantileDetector(high_quantile=0.99)
detector.fit(scorer.score(train))
binary_anom = detector.detect(anom_score)

Plot (shifting and scaling some of the series to make everything appear on the same figure):

import matplotlib.pyplot as plt

series.plot()
(anom_score / 2. - 100).plot(label="computed anomaly score", c="orangered", lw=3)
(binary_anom * 45 - 150).plot(label="detected binary anomaly", lw=4)

Features

  • Forecasting Models: A large collection of forecasting models for regression as well as classification tasks; from statistical models (such as ARIMA) to deep learning models (such as N-BEATS). See the forecasting models below.

  • Anomaly Detection The darts.ad module contains a collection of anomaly scorers, detectors and aggregators, which can all be combined to detect anomalies in time series. It is easy to wrap any of Darts forecasting or filtering models to build a fully fledged anomaly detection model that compares predictions with actuals. The PyODScorer makes it trivial to use PyOD detectors on time series.

  • Multivariate Support: TimeSeries can be multivariate - i.e., contain multiple time-varying dimensions/columns instead of a single scalar value. Many models can consume and produce multivariate series.

  • Multiple Series Training (Global Models): All machine learning based models (incl. all neural networks) support being trained on multiple (potentially multivariate) series. This can scale to large datasets too.

  • Probabilistic Support: TimeSeries objects can (optionally) represent stochastic time series; this can for instance be used to get confidence intervals, and many models support different flavours of probabilistic forecasting (such as estimating parametric distributions or quantiles). Some anomaly detection scorers are also able to exploit these predictive distributions.

  • Conformal Prediction Support: Our conformal prediction models allow to generate probabilistic forecasts with calibrated quantile intervals for any pre-trained global forecasting model.

  • Past and Future Covariates Support: Many models in Darts support past-observed and/or future-known covariate (external data) time series as inputs for producing forecasts.

  • Static Covariates Support: In addition to time-dependent data, TimeSeries can also contain static data for each dimension, which can be exploited by some models.

  • Hierarchical Reconciliation: Darts offers transformers to perform reconciliation. These can make the forecasts add up in a way that respects the underlying hierarchy.

  • Regression Models: It is possible to plug-in any scikit-learn compatible model to obtain forecasts as functions of lagged values of the target series and covariates.

  • Training with Sample Weights: All global models support being trained with sample weights. They can be applied to each observation, forecasted time step and target column.

  • Forecast Start Shifting: All global models support training and prediction on a shifted output window. This is useful for example for Day-Ahead Market forecasts, or when the covariates (or target series) are reported with a delay.

  • Explainability: Darts has the ability to explain some forecasting models using SHAP values.

  • Data Processing: Tools to easily apply (and revert) common transformations on time series data (scaling, filling missing values, differencing, boxcox, ...)

  • Metrics: A variety of metrics for evaluating time series' goodness of fit; from R2-scores to Mean Absolute Scaled Error.

  • Backtesting: Utilities for simulating historical forecasts, using moving time windows.

  • PyTorch Lightning Support: All deep learning models are implemented using PyTorch Lightning, supporting among other things custom callbacks, GPUs/TPUs training and custom trainers.

  • Filtering Models: Darts offers three filtering models: KalmanFilter, GaussianProcessFilter, and MovingAverageFilter, which allow to filter time series, and in some cases obtain probabilistic inferences of the underlying states/values.

  • Datasets The darts.datasets submodule contains some popular time series datasets for rapid and reproducible experimentation.

  • Compatibility with Multiple Backends: TimeSeries objects can be created from and exported to various backends such as pandas, polars, numpy, pyarrow, xarray, and more, facilitating seamless integration with different data processing libraries.

Forecasting Models

Here's a breakdown of the forecasting models currently implemented in Darts. Our suite includes both regression and classification models, each tailored for specific forecasting tasks. We are committed to expanding our offerings with new models and features to enhance your forecasting capabilities.

Regression Models: Our regression models are designed to predict continuous numerical values, making them ideal for forecasting future trends and patterns in time series data. Utilize these models to gain insights into potential future outcomes based on historical data.

Model Sources Target Series Support:

Univariate/
Multivariate
Covariates Support:

Past-observed/
Future-known/
Static
Probabilistic Forecasting:

Sampled/
Distribution Parameters
Training & Forecasting on Multiple Series
Baseline Models
(LocalForecastingModel)
NaiveMean ✅ ✅ 🔴 🔴 🔴 🔴 🔴 🔴
NaiveSeasonal ✅ ✅ 🔴 🔴 🔴 🔴 🔴 🔴
NaiveDrift ✅ ✅ 🔴 🔴 🔴 🔴 🔴 🔴
NaiveMovingAverage ✅ ✅ 🔴 🔴 🔴 🔴 🔴 🔴
Statistical / Classic Models
(LocalForecastingModel)
ARIMA ✅ 🔴 🔴 ✅ 🔴 ✅ 🔴 🔴
VARIMA 🔴 ✅ 🔴 ✅ 🔴 ✅ 🔴 🔴
ExponentialSmoothing ✅ 🔴 🔴 🔴 🔴 ✅ 🔴 🔴
Theta and FourTheta Theta paper & 4 Theta source ✅ 🔴 🔴 🔴 🔴 🔴 🔴 🔴
Prophet Prophet repo ✅ 🔴 🔴 ✅ 🔴 ✅ 🔴 🔴
FFT (Fast Fourier Transform) ✅ 🔴 🔴 🔴 🔴 🔴 🔴 🔴
KalmanForecaster using the Kalman filter and N4SID for system identification N4SID paper ✅ ✅ 🔴 ✅ 🔴 ✅ 🔴 🔴
TBATS TBATS paper ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
Croston method ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
StatsForecastModel wrapper around any StatsForecast model Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoARIMA Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoETS Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoCES Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoMFLES Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoTBATS Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
AutoTheta Nixtla's statsforecast ✅ 🔴 🔴 ✅ 🔴 ✅ ✅ 🔴
MultivariateModel ✅ ✅ 🔴 ✅ 🔴 ✅ ✅ 🔴
Global Baseline Models
(GlobalForecastingModel)
GlobalNaiveAggregate ✅ ✅ 🔴 🔴 🔴 🔴 🔴
GlobalNaiveDrift ✅ ✅ 🔴 🔴 🔴 🔴 🔴
GlobalNaiveSeasonal ✅ ✅ 🔴 🔴 🔴 🔴 🔴
Regression Models
(GlobalForecastingModel)
SKLearnModel: wrapper around any scikit-learn-like regression model ✅ ✅ ✅ ✅ ✅ 🔴 🔴
LinearRegressionModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
RandomForestModel ✅ ✅ ✅ ✅ ✅ 🔴 🔴
CatBoostModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
LightGBMModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
XGBModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
PyTorch (Lightning)-based Models
(GlobalForecastingModel)
RNNModel (incl. LSTM and GRU); equivalent to DeepAR in its probabilistic version DeepAR paper ✅ ✅ 🔴 ✅ 🔴 ✅ ✅
BlockRNNModel (incl. LSTM and GRU) ✅ ✅ ✅ ✅ ✅ ✅ ✅
NBEATSModel N-BEATS paper ✅ ✅ ✅ 🔴 🔴 ✅ ✅
NHiTSModel N-HiTS paper ✅ ✅ ✅ 🔴 🔴 ✅ ✅
TCNModel TCN paper, DeepTCN paper, blog post ✅ ✅ ✅ 🔴 🔴 ✅ ✅
TransformerModel ✅ ✅ ✅ 🔴 🔴 ✅ ✅
TFTModel (Temporal Fusion Transformer) TFT paper, PyTorch Forecasting ✅ ✅ ✅ ✅ ✅ ✅ ✅
DLinearModel DLinear paper ✅ ✅ ✅ ✅ ✅ ✅ ✅
NLinearModel NLinear paper ✅ ✅ ✅ ✅ ✅ ✅ ✅
TiDEModel TiDE paper ✅ ✅ ✅ ✅ ✅ ✅ ✅
TSMixerModel TSMixer paper, PyTorch Implementation ✅ ✅ ✅ ✅ ✅ ✅ ✅
NeuralForecastModel: wrapper around any NeuralForecast base model NeuralForecast Documentation ✅ ✅ ✅ ✅ ✅ ✅ ✅
Foundation Models
(GlobalForecastingModel): No training required
Chronos2Model Chronos-2 report, Amazon blog post ✅ ✅ ✅ ✅ 🔴 ✅ ✅
TimesFM2p5Model TimesFM 1.0 paper, Google blog post ✅ ✅ 🔴 🔴 🔴 ✅ ✅
TiRexModel TiRex paper, TiRex GitHub ✅ ✅ 🔴 🔴 🔴 ✅ ✅
PatchTSTFMModel PatchTST-FM paper, PatchTST-FM GitHub ✅ ✅ 🔴 🔴 🔴 ✅ ✅
Ensemble Models
(GlobalForecastingModel): Model support is dependent on ensembled forecasting models and the ensemble model itself
NaiveEnsembleModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
RegressionEnsembleModel ✅ ✅ ✅ ✅ ✅ ✅ ✅
Conformal Models
(GlobalForecastingModel): Model support is dependent on the forecasting model used
ConformalNaiveModel Conformalized Prediction ✅ ✅ ✅ ✅ ✅ ✅ ✅
ConformalQRModel Conformalized Quantile Regression ✅ ✅ ✅ ✅ ✅ ✅ ✅

Classification Models: Classification models in Darts are designed to predict categorical class labels, enabling effective time series labeling and future class prediction. These models are perfect for scenarios where identifying distinct categories or states over time is crucial.

Model Sources Target Series Support:

Univariate/
Multivariate
Covariates Support:

Past-observed/
Future-known/
Static
Probabilistic Forecasting:

Sampled/
Distribution Parameters
Training & Forecasting on Multiple Series

This HTML preview is truncated for page performance. The canonical Markdown file contains the complete snapshot.

MARKDOWN METRICS
2008words
16headings
136links
8code blocks
MDRSS ASSESSMENT
Evidence46/100high confidence
Why MDRSS assigned this score
  • Production catalog audit 2026-08-04
  • Taxonomy classified from title, annotation, source and Markdown signals
  • Agent usefulness evaluated from structure, procedures, examples, evidence and retrieval value
Evidence (1)

Discussion 0

Sign in to join the discussion.