Skip to main content

A python library for easy manipulation and forecasting of time series.

Project description

Time Series Made Easy in Python

darts


PyPI version GitHub Workflow Status Supported versions Docker Image Version (latest by date) PyPI - Downloads GitHub Release Date

darts is a python library for easy manipulation and forecasting of time series. It contains a variety of models, from classics such as ARIMA to neural networks. The 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, and combine the predictions of several models and external regressors. Darts supports both univariate and multivariate time series and models.

Install

We recommend to first setup a clean python environment for your project with at least python 3.6 using your favorite tool (conda, venv, virtualenv with or without virtualenvwrapper).

Quick Install

Once your environment is setup you can install darts using the pip package:

pip install u8darts[all]

Step-by-step Install

For more detailed install instructions you can refer to our installation guide at the end of this page.

Example Usage

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

import pandas as pd
from darts import TimeSeries

df = pd.read_csv('AirPassengers.csv', delimiter=",")
series = TimeSeries.from_dataframe(df, 'Month', '#Passengers')
train, val = series.split_after(pd.Timestamp('19580101'))

The dataset used in this example can be downloaded from this link.

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

from darts.models import ExponentialSmoothing

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

Plot:

import matplotlib.pyplot as plt

series.plot(label='actual')
prediction.plot(label='forecast', lw=2)
plt.legend()
plt.xlabel('Year')
darts forecast example

We invite you to go over the example notebooks in the examples directory.

Documentation

The documentation of the API and models is available here.

Features

Currently, the library contains the following features:

Forecasting Models:

  • Exponential smoothing,
  • ARIMA & auto-ARIMA,
  • Facebook Prophet,
  • Theta method,
  • FFT (Fast Fourier Transform),
  • Recurrent neural networks (vanilla RNNs, GRU, and LSTM variants),
  • Temporal convolutional network.

Preprocessing: Transformer tool for easily scaling / normalizing time series.

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.

Regressive Models: Possibility to predict a time series from several other time series (e.g., external regressors), using arbitrary regressive models

Multivariate Support: Tools to create, manipulate and forecast multivariate time series.

Contribute

The development is ongoing, and there are many new features that we want to add. We welcome pull requests and issues on github.

Before working on a contribution (a new feature or a fix) make sure you can't find anything related in issues. If there is no on-going effort on what you plan to do then we recommend to do the following:

  1. Create an issue, describe how you would attempt to solve it, and if possible wait for a discussion.
  2. Fork the repository.
  3. Clone the forked repository locally.
  4. Create a clean python env and install requirements with pip: pip install -r requirements/main.txt -r requirements/dev.txt -r requirements/release.txt
  5. Create a new branch:
    • Branch off from the develop branch.
    • Prefix the branch with the type of update you are making:
      • feature/
      • fix/
      • refactor/
    • Work on your update
  6. Check that your code pass the tests / design new unit tests: python -m unittest.
  7. Verify your tests coverage by running ./gradlew coverageTest
    • Additionally you can generate an xml report and use VSCode Coverage gutter to identify untested lines with ./coverage.sh xml
  8. If your contribution introduces a significant change, add it to CHANGELOG.md under the "Unreleased" section.
  9. Create a pull request from your new branch to the develop branch.

Contact Us

If what you want to tell us is not a suitable github issue, feel free to send us an email at darts@unit8.co for darts related matters or info@unit8.co for any other inquiries.

Installation Guide

Preconditions

Some of the models depend on fbprophet and torch, which have non-Python dependencies. A Conda environment is thus recommended because it will handle all of those in one go.

The following steps assume running inside a conda environment. If that's not possible, first follow the official instructions to install fbprophet and torch, then skip to Install darts

To create a conda environment for Python 3.7 (after installing conda):

conda create --name <env-name> python=3.7

Don't forget to activate your virtual environment

conda activate <env-name>

MAC

conda install -c conda-forge -c pytorch pip fbprophet pytorch

Linux and Windows

conda install -c conda-forge -c pytorch pip fbprophet pytorch cpuonly

Install darts

Install Darts with all available models: pip install u8darts[all].

As some models have relatively heavy (or non-Python) dependencies, we also provide the following alternate lighter install options:

  • Install core only (without neural networks, Prophet or AutoARIMA): pip install u8darts
  • Install core + neural networks (PyTorch): pip install u8darts[torch]
  • Install core + Facebook Prophet: pip install u8darts[fbprophet]
  • Install core + AutoARIMA: pip install u8darts[pmdarima]

Running the examples only, without installing:

If the conda setup is causing too many problems, we also provide a Docker image with everything set up for you and ready-to-use python notebooks with demo examples. To run the example notebooks without installing our libraries natively on your machine, you can use our Docker image:

./gradlew docker && ./gradlew dockerRun

Then copy and paste the URL provided by the docker container into your browser to access Jupyter notebook.

For this setup to work you need to have a Docker service installed. You can get it at Docker website.

Tests

Gradle setup works best with python env, but it requires only that pip is for python3.

To run all tests at once just run

./gradlew test

alternatively you can run

./gradlew unitTest     # to run only unittests
./gradlew coverageTest # to run coverage
./gradlew lint         # to run linter

Documentation

To build documantation locally just run

./gradlew buildDocs

After that docs will be available in ./docs/build/html directory. You can just open ./docs/build/html/index.html using your favourite browser.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

u8darts-0.3.0.tar.gz (3.6 MB view details)

Uploaded Source

Built Distribution

u8darts-0.3.0-py3-none-any.whl (98.2 kB view details)

Uploaded Python 3

File details

Details for the file u8darts-0.3.0.tar.gz.

File metadata

  • Download URL: u8darts-0.3.0.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.5

File hashes

Hashes for u8darts-0.3.0.tar.gz
Algorithm Hash digest
SHA256 8bc0e384efb8f515a2be1410c97fad3f4215ce8f593abffe40dbfcb5b73a17b9
MD5 3b7d61744fe0c2943aee7c525368aa6f
BLAKE2b-256 3c0e4c31cd42b8ca0f898f29befe0add57f6cf20e3695c490149991d08bfb822

See more details on using hashes here.

File details

Details for the file u8darts-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: u8darts-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 98.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.5

File hashes

Hashes for u8darts-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 900e23b22ed01d1ce1b1f19db8e237ce5cda621f81d5778d16d54f622c651183
MD5 b16014fb3677ed9587ae10d84ef41b0a
BLAKE2b-256 394e39ba955dd12889d3fed9c03c4cff0db7e560b44bc27aafcffc7d7467db4e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page