datashader 0.19.0


pip install datashader

  Latest version

Released: Mar 20, 2026


Meta
Author: HoloViz developers
Maintainer: HoloViz developers
Requires Python: >=3.10

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers
  • Science/Research

Natural Language
  • English

Operating System
  • OS Independent

Programming Language
  • Python :: 3
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14

Topic
  • Scientific/Engineering
  • Scientific/Engineering :: Visualization
  • Software Development :: Libraries



Turn even the largest data into images, accurately

Downloads https://pypistats.org/packages/datashader https://anaconda.org/pyviz/datashader
Build Status Build Status
Coverage codecov
Latest dev release Github tag dev-site
Latest release Github release PyPI version datashader version conda-forge version defaults version
Python Python support
Docs DocBuildStatus site
Support Discourse

History of OS GIS Timeline


What is it?

Datashader is a data rasterization pipeline for automating the process of creating meaningful representations of large amounts of data. Datashader breaks the creation of images of data into 3 main steps:

  1. Projection

    Each record is projected into zero or more bins of a nominal plotting grid shape, based on a specified glyph.

  2. Aggregation

    Reductions are computed for each bin, compressing the potentially large dataset into a much smaller aggregate array.

  3. Transformation

    These aggregates are then further processed, eventually creating an image.

Using this very general pipeline, many interesting data visualizations can be created in a performant and scalable way. Datashader contains tools for easily creating these pipelines in a composable manner, using only a few lines of code. Datashader can be used on its own, but it is also designed to work as a pre-processing stage in a plotting library, allowing that library to work with much larger datasets than it would otherwise.

Installation

Datashader supports Python 3.10, 3.11, 3.12, 3.13, and 3.14 on Linux, Windows, and Mac and can be installed with conda:

conda install datashader

or with pip:

pip install datashader

For the best performance, we recommend using conda so that you are sure to get numerical libraries optimized for your platform. The latest releases are available on the pyviz channel conda install -c pyviz datashader and the latest pre-release versions are available on the dev-labelled channel conda install -c pyviz/label/dev datashader.

Fetching Examples

Once you've installed datashader as above you can fetch the examples:

datashader examples
cd datashader-examples

This will create a new directory called datashader-examples with all the data needed to run the examples.

To run all the examples you will need some extra dependencies. If you installed datashader within a conda environment, with that environment active run:

conda env update --file environment.yml

Otherwise create a new environment:

conda env create --name datashader --file environment.yml
conda activate datashader

Developer Instructions

  1. Install Python 3 miniconda or anaconda, if you don't already have it on your system.

  2. Clone the datashader git repository if you do not already have it:

    git clone git://github.com/holoviz/datashader.git
    
  3. Set up a new conda environment with all of the dependencies needed to run the examples:

    cd datashader
    conda env create --name datashader --file ./examples/environment.yml
    conda activate datashader
    
  4. Put the datashader directory into the Python path in this environment:

    pip install --no-deps -e .
    

Learning more

After working through the examples, you can find additional resources linked from the datashader documentation, including API documentation and papers and talks about the approach.

Some Examples

USA census

NYC races

NYC taxi

0.19.0 Mar 20, 2026
0.19.0rc1 Mar 20, 2026
0.19.0rc0 Mar 19, 2026
0.19.0a0 Feb 06, 2026
0.18.2 Aug 05, 2025
0.18.2rc0 Aug 05, 2025
0.18.1 May 08, 2025
0.18.1a0 Apr 30, 2025
0.18.0 Apr 10, 2025
0.18.0rc0 Apr 10, 2025
0.17.0 Jan 29, 2025
0.17.0rc0 Jan 28, 2025
0.17.0a0 Jan 20, 2025
0.16.3 Jul 04, 2024
0.16.3rc0 Jul 04, 2024
0.16.2 May 31, 2024
0.16.2rc1 May 30, 2024
0.16.2a1 May 23, 2024
0.16.1 Apr 19, 2024
0.16.1rc1 Apr 10, 2024
0.16.1a1 Oct 31, 2023
0.16.0 Oct 26, 2023
0.15.2 Aug 17, 2023
0.15.1 Jul 05, 2023
0.15.0 May 30, 2023
0.14.5a1 May 16, 2023
0.14.4 Feb 02, 2023
0.14.3 Nov 17, 2022
0.14.2 Aug 10, 2022
0.14.1 Jun 21, 2022
0.14.1rc2 Jun 16, 2022
0.14.1rc1 May 07, 2022
0.14.1rc0 May 05, 2022
0.14.1a1 May 04, 2022
0.14.0 Apr 25, 2022
0.14.0a4 Apr 25, 2022
0.14.0a3 Apr 23, 2022
0.14.0a2 Apr 06, 2022
0.14.0a1 Apr 05, 2022
0.13.0 Jun 09, 2021
0.12.2a5 May 25, 2021
0.12.2a1 May 21, 2021
0.12.1 Mar 16, 2021
0.12.0 Jan 07, 2021
0.12.0rc2 Jan 07, 2021
0.12.0a7 Dec 23, 2020
0.12.0a6 Dec 04, 2020
0.12.0a5 Dec 03, 2020
0.12.0a4 Dec 03, 2020
0.12.0a3 Dec 03, 2020
0.11.1 Aug 16, 2020
0.11.0 May 25, 2020
0.10.0 Jan 21, 2020
0.9.0 Dec 08, 2019
0.8.0 Oct 08, 2019
0.7.0 Apr 03, 2019
0.6.9 Jan 29, 2019
0.6.8 Sep 11, 2018
0.6.6 May 24, 2018

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras: None
Dependencies:
colorcet
multipledispatch
numba
numpy
packaging
pandas
param
pyct
requests
scipy
toolz
xarray