Skip to main content

Interactive data cursors for Matplotlib

Project description

mpldatacursor provides interactive “data cursors” (clickable annotation boxes) for matplotlib.

Major Changes in v0.6

Version 0.6 adds:

  • Better handling of date-formatted axes.

  • “Popup” text boxes can be interactively hidden by right-clicking (controllable through the hide_button and display_button kwargs).

  • Proper support for twinned axes.

  • Better unicode support for the formatter function. Note that this makes mpldatacursor incompatibile with early 3.x versions (3.0, 3.1, and 3.2). However, it remains compatible with Python >= 3.3 (e.g. 3.3, 3.4, and 3.5) as well as 2.6 and 2.7.

  • Annotation boxes will now try to stay visible inside the figure by default. Specify keep_inside=False to disable this.

  • Added basic support for extracting the z-value of 3D artists.

  • Made the precision of the default x & y formatting depend on the range of the axes.

  • Full support for interactive IPython notebooks through the nbagg backend. Note that the performance on the nbagg may be very poor.

  • Numerous bugfixes (Thanks to everyone for the reports!).

Basic Usage

mpldatacursor offers a few different styles of interaction through the datacursor function.

As an example, this displays the x, y coordinates of the selected artist in an annotation box:

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

data = np.outer(range(10), range(1, 5))

fig, ax = plt.subplots()
lines = ax.plot(data)
ax.set_title('Click somewhere on a line')

datacursor(lines)

plt.show()
http://joferkington.github.com/mpldatacursor/images/basic.png

If no artist or sequence of artists is specified, all manually plotted artists in all axes in all figures will be activated. (This can be limited to only certain axes by passing in an axes object or a sequence of axes to the axes kwarg.)

As an example (the output is identical to the first example):

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

data = np.outer(range(10), range(1, 5))

plt.plot(data)
plt.title('Click somewhere on a line')

datacursor()

plt.show()

Hiding Annotation Boxes and Toggling Interactivity

To hide a specific annotation box, right-click on it (Customizable through the hide_button kwarg). To hide all annotation boxes, press “d” on the keyboard. (Think of “delete”. “h” was taken by matplotlib’s default key for “home”.) To disable or re-enable interactive datacursors, press “t” (for “toggle”). These keys can be customized through the keybindings kwarg.

Controlling the Displayed Text

The displayed text can be controlled either by using the formatter kwarg, which expects a function that accepts an arbitrary sequence of kwargs and returns the string to be displayed. Often, it’s convenient to pass in the format method of a template string (e.g. formatter="longitude:{x:.2f}\nlatitude{y:.2f}".format).

As an example of using the formatter kwarg to display only the label of the artist instead of the x, y coordinates:

import numpy as np
import matplotlib.pyplot as plt
from mpldatacursor import datacursor

x = np.linspace(0, 10, 100)

fig, ax = plt.subplots()
ax.set_title('Click on a line to display its label')

# Plot a series of lines with increasing slopes...
for i in range(1, 20):
    ax.plot(x, i * x, label='$y = {}x$'.format(i))

# Use a DataCursor to interactively display the label for a selected line...
datacursor(formatter='{label}'.format)

plt.show()
http://joferkington.github.com/mpldatacursor/images/show_artist_labels.png

Working with Images

datacursor will also display the array value at the selected point in an image. This example also demonstrates using the display="single" option to display only one data cursor instead of one-per-axes.:

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

data = np.arange(100).reshape((10,10))

fig, axes = plt.subplots(ncols=2)
axes[0].imshow(data, interpolation='nearest', origin='lower')
axes[1].imshow(data, interpolation='nearest', origin='upper',
                     extent=[200, 300, 400, 500])
datacursor(display='single')

fig.suptitle('Click anywhere on the image')

plt.show()
http://joferkington.github.com/mpldatacursor/images/image_example.png

Draggable Boxes

If draggable=True is specified, the annotation box can be interactively dragged to a new position after creation.

As an example (This also demonstrates using the display='multiple' kwarg):

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

data = np.outer(range(10), range(1, 5))

fig, ax = plt.subplots()
ax.set_title('Try dragging the annotation boxes')
ax.plot(data)

datacursor(display='multiple', draggable=True)

plt.show()
http://joferkington.github.com/mpldatacursor/images/draggable_example.png

Further Customization

Additional keyword arguments to datacursor are passed on to annotate. This allows one to control the appearance and location of the “popup box”, arrow, etc. Note that properties passed in for the bbox and arrowprops kwargs will be merged with the default style. Therefore, specifying things like bbox=dict(alpha=1) will yield an opaque, yellow, rounded box, instead of matplotlib’s default blue, square box. As a basic example:

import matplotlib.pyplot as plt
import numpy as np
from mpldatacursor import datacursor

fig, axes = plt.subplots(ncols=2)

left_artist = axes[0].plot(range(11))
axes[0].set(title='No box, different position', aspect=1.0)

right_artist = axes[1].imshow(np.arange(100).reshape(10,10))
axes[1].set(title='Fancy white background')

# Make the text pop up "underneath" the line and remove the box...
dc1 = datacursor(left_artist, xytext=(15, -15), bbox=None)

# Make the box have a white background with a fancier connecting arrow
dc2 = datacursor(right_artist, bbox=dict(fc='white'),
                 arrowprops=dict(arrowstyle='simple', fc='white', alpha=0.5))

plt.show()
http://joferkington.github.com/mpldatacursor/images/change_popup_color.png

Highlighting Selected Lines

HighlightingDataCursor highlights a Line2D artist in addition to displaying the selected coordinates.:

import numpy as np
import matplotlib.pyplot as plt
from mpldatacursor import HighlightingDataCursor

x = np.linspace(0, 10, 100)

fig, ax = plt.subplots()

# Plot a series of lines with increasing slopes...
lines = []
for i in range(1, 20):
    line, = ax.plot(x, i * x, label='$y = {}x$'.format(i))
    lines.append(line)

HighlightingDataCursor(lines)

plt.show()
http://joferkington.github.com/mpldatacursor/images/highlighting_example.png

Installation

mpldatacursor can be installed from PyPi using easy_install/pip/etc. (e.g. pip install mpldatacursor) or you may download the source and install it directly with python setup.py install.

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

mpldatacursor-0.6.0.tar.gz (22.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mpldatacursor-0.6.0-py2.py3-none-any.whl (27.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file mpldatacursor-0.6.0.tar.gz.

File metadata

  • Download URL: mpldatacursor-0.6.0.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mpldatacursor-0.6.0.tar.gz
Algorithm Hash digest
SHA256 23fcccaa7f31834365b98e80f302117ee63dd38f8ff71dab09005256857a7f50
MD5 66cb990843d7ec3611f3e0fb113053d1
BLAKE2b-256 59a3df064783aae4f23a658290471ddbbbdfae5c0e9ba6128eced5a70b3f8f9c

See more details on using hashes here.

File details

Details for the file mpldatacursor-0.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for mpldatacursor-0.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0e5b95908fb1efbfb44f19cea2b4e566e809b8fcc0adbe288ba3dd8a80edb560
MD5 15b4243b0a06477faae7f3cd852f71a1
BLAKE2b-256 0ba88584f07eb61b2807cc2249449978ad10b848444fde2e462776b9d5fa4cbe

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