Skip to main content

A library for creating lightweight views of matplotlib axes.

Project description

matplotview

A library for creating lightweight views of matplotlib axes.

matplotview provides a simple interface for creating "views" of matplotlib axes, providing a simple way of displaying overviews and zoomed views of data without plotting data twice.

Usage

matplotview provides two methods, view, and inset_zoom_axes. The view method accepts two Axes, and makes the first axes a view of the second. The inset_zoom_axes method provides the same functionality as Axes.inset_axes, but the returned inset axes is configured to be a view of the parent axes.

Examples

An example of two axes showing the same plot.

from matplotview import view
import matplotlib.pyplot as plt
import numpy as np

fig, (ax1, ax2) = plt.subplots(1, 2)

# Plot a line, circle patch, some text, and an image...
ax1.plot([i for i in range(10)], "r")
ax1.add_patch(plt.Circle((3, 3), 1, ec="black", fc="blue"))
ax1.text(10, 10, "Hello World!", size=20)
ax1.imshow(np.random.rand(30, 30), origin="lower", cmap="Blues", alpha=0.5,
           interpolation="nearest")

# Turn axes 2 into a view of axes 1.
view(ax2, ax1)
# Modify the second axes data limits to match the first axes...
ax2.set_aspect(ax1.get_aspect())
ax2.set_xlim(ax1.get_xlim())
ax2.set_ylim(ax1.get_ylim())

fig.tight_layout()
fig.show()

First example plot results, two views of the same plot.

An inset axes example .

from matplotlib import cbook
import matplotlib.pyplot as plt
import numpy as np
from matplotview import inset_zoom_axes

def get_demo_image():
    z = cbook.get_sample_data("axes_grid/bivariate_normal.npy", np_load=True)
    # z is a numpy array of 15x15
    return z, (-3, 4, -4, 3)

fig, ax = plt.subplots(figsize=[5, 4])

# Make the data...
Z, extent = get_demo_image()
Z2 = np.zeros((150, 150))
ny, nx = Z.shape
Z2[30:30+ny, 30:30+nx] = Z

ax.imshow(Z2, extent=extent, interpolation='nearest', origin="lower")

# Creates an inset axes with automatic view of the parent axes...
axins = inset_zoom_axes(ax, [0.5, 0.5, 0.47, 0.47])
# Set limits to sub region of the original image
x1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9
axins.set_xlim(x1, x2)
axins.set_ylim(y1, y2)
axins.set_xticklabels([])
axins.set_yticklabels([])

ax.indicate_inset_zoom(axins, edgecolor="black")

fig.show()

Second example plot results, an inset axes showing a zoom view of an image.

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

matplotview-0.0.2.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

matplotview-0.0.2-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file matplotview-0.0.2.tar.gz.

File metadata

  • Download URL: matplotview-0.0.2.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for matplotview-0.0.2.tar.gz
Algorithm Hash digest
SHA256 8c2823a4cd3cee3a8ee4109dbdcfa0b5e68fb6bfee20c99d04895a40933ae663
MD5 741de266702983f8840ef44a4f966df4
BLAKE2b-256 37c0f3d8097070fea54dd10f9ae2c0d4efb488f2602cbb935442f7e3d6312a6d

See more details on using hashes here.

File details

Details for the file matplotview-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: matplotview-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for matplotview-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 210f38cfa4345102cd0f6f6d4832db7687d72391b338df5fe9645e9099ff5dd7
MD5 170b9007670c88c8d9a94e5d98e74c83
BLAKE2b-256 d90d562c3a284836c9a9044c2ebb8a9d4e410475904db4809e1a23f26620eb2e

See more details on using hashes here.

Supported by

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