Skip to content

altair-viz/altair_notebooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jupyter Notebooks for Altair

This repository contains tutorial and example Jupyter Notebooks for Altair.

Examples Index

You can browse static version of these notebooks here on GitHub, or click one of the badges below to run these notebooks on either Binder or Colab.

Binder Colab

Example

Here is an example using Altair to quickly visualize and display a dataset with the native Vega-Lite renderer in the JupyterLab:

import altair as alt

# load a simple dataset as a pandas DataFrame
from vega_datasets import data
cars = data.cars()

alt.Chart(cars).mark_point().encode(
    x='Horsepower',
    y='Miles_per_Gallon',
    color='Origin',
)

Altair Visualization

About

Tutorial and Examples Jupyter Notebooks for Altair

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages