Skip to main content

Matplotlib aware interact functions

Project description

mpl-interactions

All Contributors

Documentation StatusBinder (Warning: The interactions will be laggy when on binder)

This library provides helpful ways to interact with Matplotlib plots. There are three submodules:

jupyter

Provides a different approach than ipywidgets.interact for making sliders that affect a Matplotlib plot. When using interact you are responsible for:

  1. Defining the function to plot f(x,...) => y
  2. Handling the plotting logic (plt.plot, fig.cla, ax.set_ylim, etc)

In contrast, with mpl-interactions you only need to provide f(x, ...) => y and the plotting and updating boilerplate are handled for you.

x = np.linspace(0,6,100)
beta = np.linspace(0,5*np.pi)
def f(x, beta):
    return np.sin(x*4+beta)
interactive_plot(f, x=x, beta=beta)

These functions are designed to be used with ipympl, the backend that is designed for use in Jupyter notebooks. So for optimal performance, make sure you set the backend with %matplotlib ipympl. That said, these functions will also work with any interactive backend (e.g. %matplotlib qt5).

generic

Provides ways to interact with Matplotlib that will work outside of a jupyter notebook; this should work equally well with any backend.

  1. A very niche (but very cool) way to compare 2D heatmaps
  2. Scroll to zoom
  3. Middle click to pan

utils

This module includes utility functions to make things just that little bit easier

  1. ioff as a context manager
from mpl_interactions.utils import ioff
with ioff:
    # interactive mode will be off
    fig = plt.figure()
    # other stuff
# interactive mode will be on
  1. figure that accepts a scalar for figsize (this will scale the default dimensions)
from mpl_interactions.utils import figure
fig = figure(3)
# the default figsize is [6.4, 4.8], this figure will have figsize = [6.4*3, 4.8*3]
  1. nearest_idx -- avoid ever having to write np.argmin(np.abs(arr - value)) again

Installation

pip install mpl_interactions

# if using jupyterlab
conda install -c conda-forge nodejs>10
jupyter labextension install @jupyter-widgets/jupyterlab-manager

If you use jupyterlab, make sure you follow the full instructions in the ipympl readme in particular installing jupyterlab-manager.

Contributing / feature requests / roadmap

I use the GitHub issues to keep track of ideas I have, so looking through those should serve as a roadmap of sorts. For the most part I add to the library when I create a function that is useful for the science I am doing. If you create something that seems useful a PR would be most welcome so we can share it easily with more people. I'm also open to feature requests if you have an idea.

Documentation

Definitely a work in progress--I would recommend checking out the examples directory. The minimal narrative documentation can be found on ReadTheDocs

Examples with GIFs!

Tragically, neither GitHub nor the sphinx documentation render the actual moving plots so instead, here are gifs of the functions. The code for these can be found in the notebooks in the examples directory.

interactive_plot

Easily make a line plot interactive:

heatmap_slicer

Compare vertical and horizontal slices across multiple heatmaps:

scrolling zoom + middle click pan

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Ian Hunt-Isaak

💻

Sam

📖

This project follows the all-contributors specification. Contributions of any kind welcome!

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

mpl_interactions-0.3.0.tar.gz (31.8 MB view details)

Uploaded Source

Built Distribution

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

mpl_interactions-0.3.0-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file mpl_interactions-0.3.0.tar.gz.

File metadata

  • Download URL: mpl_interactions-0.3.0.tar.gz
  • Upload date:
  • Size: 31.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.2.post20200711 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for mpl_interactions-0.3.0.tar.gz
Algorithm Hash digest
SHA256 becb5721b57a00d6d3b4da1652d359fa70354e2db3855a9767cb61face95e823
MD5 2d333868b77ec125280925cc68baedeb
BLAKE2b-256 498d43d01d63476d5faf9d96937ad90d033bf094cd353d3ab0685c369c8e273e

See more details on using hashes here.

File details

Details for the file mpl_interactions-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: mpl_interactions-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.2.post20200711 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for mpl_interactions-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e6657d3316c61b30d60a3efbc39745fd11b40b53a69fe31d0b4ce7f02ccc6466
MD5 4ca292ee5ebf1efa47954dd1880aada8
BLAKE2b-256 ad3d4cbdb33b99c3b832a427887bd8e626545fb7f3807a6db1c27fbc3ce370f8

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