Skip to main content

Bokeh plotting API.

Project description

Aplanat

Aplanat provides a wrappers (templates) around the bokeh library to simplify the plotting of common plots, with a particular focus on producing plots in Juypyter notebook environments.

Installation

Aplanat is easily installed in the standard python tradition:

git clone --recursive https://github.com/epi2me-labs/aplanat.git
cd aplanat
pip install -r requirements.txt
python setup.py install

or via pip:

pip install aplanat.

Usage

Aplanat does not try to be everything to everyone; this is both the power and downfall of a number of plotting libraries. Being overly generic leads to confusing documentation and boilerplate code. As much as the developers love the declarative nature of ggplot in R, aplanat eschews this approach in search of something more transparent --- aplanat does not try to be too clever with your data. Having said that, the layouts module does provide templates to create facet grids directly from a dataframe.

Rather aplanat attempts to make constructing common plots as simple as possible by translating directly a users inputs into displayed data. Most plotting functions are of the form:

plot = plot_function(
    [series_1_x, series_2_x, ...], [series_1_y, series_2_y, ...],
    name=[series_1_name, series_2_name, ...],
    colors=[series_1_color, series_1_color, ...])

Here are some examples, plotting a kernel density estimate (a simple line plot having computed the transform of the data):

import aplanat
from aplanat import lines, util
data = [....]  # a list or numpy array
x_grid, pdf = util.kernel_density_estimate(data)
plot = lines.line([x_grid], [pdf])
aplanat.show(plot)  # to show the plot in a notebook

To add axis and plot titles:

plot = lines.line(...,
   title='Chart title', x_axis_label='x-axis', y_axis_label='y-axis')

To plot multiple series just extend the lists given to the arguments (this time using points):

from aplanat import points
x0, y0 = [...], [...]
x1, y1 = [...], [...]
plot = points.points([x0, x1], [y0, y1])

Plotting a histogram:

from aplanat import hist
data = [...]   # a list or numpy array
plot = hist.histogram([data], bins=400)

A simple bar plot illustrating counts of groups:

groups = [...]
counts = [...]
plot = bars.simple_bar(groups, counts)

A set of boxplots illustrating how the distribution of variable changes (y-axis) with a second grouping variable (the x-axis):

from aplanat import bars
values = [...] 
groups = [...]  # as long as `values`, indicating the group for each value
plot = bars.boxplot_series(groups, values)

Plot a heat map using a hexagonal binning (as seems to be popular these days):

from aplanat import spatial
x_values = [...]
y_values = [...]
plot = spatial.hexmap(x_values, y_values)

To show multiple plots, use aplanat.grid rather than aplanat.show:

plots = [hist.histogram(x) for x in (...)]
aplanat.grid(plots, ncol=3)

The plots will be shown filling a grid row-wise.

ggplot-like facet_grid

All the above examples show how all the fundamental plotting functions transparently turn vector inputs into plotting variables. To provide a higher-level interface the layouts module provides the ability to create more advanced (multi-) plots. For example a common plot is to create layout a base plot type with data segregated by two facets in a grid. The facet_grid function will accept a pandas dataframe and perform this operation.

from aplanat.layouts import facet_grid
transform= lambda z: z
plot = facet_grid(
    data_frame,
    {'x':'x_variable', 'y':'y_variable', 'col':'colour_variable'},
    lines.line,  # the plot type
    xlim=(0, None), ylim=(0, None),
    transform=(transform, transform),
    facet=('X facet', 'Y facet'),
    height=300, width=300,
    x_facet_heading='X Facetlabel',
    y_facet_heading='Y Facet label',
    x_axis_label='x-axis plot label',
    y_axis_label='y-axis plot label')

The transform callback functions can be used to transform the x and y data for each subplot after it has been selected, allowing arbitrary manipulation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aplanat-0.5.7.tar.gz (180.5 kB view details)

Uploaded Source

File details

Details for the file aplanat-0.5.7.tar.gz.

File metadata

  • Download URL: aplanat-0.5.7.tar.gz
  • Upload date:
  • Size: 180.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aplanat-0.5.7.tar.gz
Algorithm Hash digest
SHA256 cb73d98882633bc21fb4bbceac22203c201e170943aa21d3a986fb9d8a32c064
MD5 d27dd797ae80fd04784e0f2c6edbe021
BLAKE2b-256 996b8072db9934f2f47a1d65e7119d5f04844e4d35ee8ce008c5b6a79dff4ee6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page