altair-latimes

A Los Angeles Times theme for Python's Altair statistical visualization library


Keywords
python, news, jupyter-notebook, journalism, data-visualization, data-journalism, altair
License
MIT
Install
pip install altair-latimes==0.0.2

Documentation

altair-latimes

A Los Angeles Times theme for Python's Altair statistical visualization library

Getting started

Install from PyPI.

$ pip install altair-latimes

Import with Altair.

import altair as alt
import altair_latimes as lat

Register and enable the theme.

alt.themes.register('latimes', lat.theme)
alt.themes.enable('latimes')

Make a chart.

from vega_datasets import data
source = data.iowa_electricity()

alt.Chart(source, title="Iowa's renewable energy boom").mark_area().encode(
    x=alt.X(
        "year:T",
        title="Year"
    ),
    y=alt.Y(
        "net_generation:Q",
        stack="normalize",
        title="Share of net generation",
        axis=alt.Axis(format=".0%"),
    ),
    color=alt.Color(
        "source:N",
        legend=alt.Legend(title="Electricity source"),
    )
)

example

What else?

This library requires that you have both the "Benton Gothic" and "Benton Gothic Bold" fonts installed. More examples can be found in notebook.ipynb.