Matplotlib backend

Matplotlib backend#

Matplotlib interface layer.

Object creation and I/O#

create_plotting_grid(number[, rows, cols, ...])

Create a figure with a grid of plotting targets in it.

show(figure)

Show all existing matplotlib figures.

Geoms#

line(*args, **kwargs)

multiple_lines(*args, **kwargs)

scatter(*args, **kwargs)

text(*args, **kwargs)

Plot appearance#

title(*args, **kwargs)

ylabel(*args, **kwargs)

xlabel(*args, **kwargs)

xticks(ticks, labels, target, *[, rotation])

Interface to matplotlib for adding x ticks and labels to a plot.

yticks(ticks, labels, target, *[, rotation])

Interface to matplotlib for adding y ticks and labels to a plot.

ticklabel_props(*args, **kwargs)

remove_ticks(target, *[, axis])

Interface to matplotlib for removing ticks from a plot.

remove_axis(target[, axis])

Interface to matplotlib for removing axis from a plot.

Legend#

legend(target, kwarg_list, label_list[, ...])

Generate a legend on a figure given lists of labels and property kwargs.