Skip to content

jakevdp/altair_pandas

 
 

altair_pandas

build status

Altair backend for pandas plotting functions.

Note: this package is a work in progress

Installation

Altair pandas backend works with pandas version 0.25.1 or newer.

$ pip install git+https://github.com/altair-viz/altair_pandas
$ pip install -U pandas

Usage

In a Jupyter notebook with Altair properly configured:

import pandas as pd
import numpy as np
pd.set_option('plotting.backend', 'altair')  # Installing altair_pandas registers this.

data = pd.Series(np.random.randn(100).cumsum())
data.plot()

Altair-Pandas Visualization

The goal of this package is to implement all of Pandas' Plotting API

About

Altair backend for pandas plotting

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.1%
  • Makefile 2.9%