MCPcopy Index your code
hub / github.com/unit8co/darts

github.com/unit8co/darts @0.45.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.45.0 ↗ · + Follow
4,303 symbols 21,238 edges 296 files 1,814 documented · 42% updated 5d ago0.45.0 · 2026-06-19★ 9,444194 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Time Series Made Easy in Python

darts


PyPI version Conda Version Supported versions Docker Image Version (latest by date) GitHub Release Date GitHub Workflow Status Downloads Downloads codecov Code style: black Join the chat at https://gitter.im/u8darts/darts

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()

darts forecast example

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)

darts anomaly detection example

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) | | | | |

Core symbols most depended-on inside this repo

values
called by 795
darts/timeseries.py
raise_log
called by 582
darts/logging.py
end_time
called by 344
darts/timeseries.py
all_values
called by 321
darts/timeseries.py
append
called by 309
darts/timeseries.py
linear_timeseries
called by 309
darts/utils/timeseries_generation.py
start_time
called by 289
darts/timeseries.py
from_times_and_values
called by 281
darts/timeseries.py

Shape

Method 3,352
Class 510
Function 382
Route 59

Languages

Python100%

Modules by API surface

darts/timeseries.py172 symbols
darts/tests/test_timeseries.py136 symbols
darts/utils/likelihood_models/torch.py121 symbols
darts/models/forecasting/forecasting_model.py102 symbols
darts/tests/models/forecasting/test_torch_forecasting_model.py91 symbols
darts/models/forecasting/torch_forecasting_model.py85 symbols
darts/tests/models/forecasting/test_sklearn_models.py82 symbols
darts/tests/utils/historical_forecasts/test_historical_forecasts.py74 symbols
darts/dataprocessing/encoders/encoders.py69 symbols
darts/tests/metrics/test_metrics.py68 symbols
darts/tests/models/forecasting/test_regression_ensemble_model.py62 symbols
darts/datasets/datasets.py62 symbols

Dependencies from manifests, versioned

holidays0.11.1 · 1×
joblib0.16.0 · 1×
matplotlib3.3.0 · 1×
narwhals1.25.1 · 1×
nfoursid1.0.0 · 1×
numpy1.26.0 · 1×
pandas2.2.0 · 1×
pyod0.9.5 · 1×
requests2.22.0 · 1×
scikit-learn1.6.0 · 1×
scipy1.3.2 · 1×
shap0.40.0 · 1×

For agents

$ claude mcp add darts \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact