A Los Angeles Times theme for Python's Altair statistical visualization library
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"),
)
)
This library requires that you have both the "Benton Gothic" and "Benton Gothic Bold" fonts installed. More examples can be found in notebook.ipynb.