Skip to main content

A set of utilities for testing matplotlib plots in an object-oriented manner.

Project description

# plotchecker

[![Build Status](https://travis-ci.org/jhamrick/plotchecker.svg?branch=master)](https://travis-ci.org/jhamrick/plotchecker)
[![codecov.io](http://codecov.io/github/jhamrick/plotchecker/coverage.svg?branch=master)](http://codecov.io/github/jhamrick/plotchecker?branch=master)
[![Documentation Status](https://readthedocs.org/projects/plotchecker/badge/?version=latest)](http://plotchecker.readthedocs.org/en/latest/?badge=latest)

A set of utilities for checking and grading matplotlib plots. **Please note that `plotchecker` is only compatible with Python 3, and not legacy Python 2**. Documentation is available on [Read The Docs](https://plotchecker.readthedocs.org/).

## Installation

To install `plotchecker`:

```
pip3 install plotchecker
```

## Background

The inspiration for this library comes from including plotting exercises in programming assignments. Often, there are multiple possible ways to solve a problem; for example, if students are asked to create a "scatter plot", the following are all valid methods of doing so:

```python
# Method 1
plt.plot(x, y, 'o')

# Method 2
plt.scatter(x, y)

# Method 3
for i in range(len(x)):
plt.plot(x[i], y[i], 'o')

# Method 4
for i in range(len(x)):
plt.scatter(x[i], y[i])
```

Unfortunately, each of the above approaches also creates a different underlying representation of the data in matplotlib. Method 1 creates a single Line object; Method 2 creates a single Collection; Method 3 creates *n* Line objects, where *n* is the number of points; and Method 4 creates *n* Collection objects. Testing for all of these different edge cases is a huge burden on instructors.

While some of the above options are certainly better than others in terms of simplicity and performance, it doesn't seem quite fair to ask students to create their plots in a very specific way when all we've asked them for is a scatter plot. If they look pretty much identical visually, why isn't it a valid approach?

Enter `plotchecker`, which aims to abstract away from these differences and expose a simple interface for instructors to check students' plots. All that is necessary is access to the `Axes` object, and then you can write a common set of tests for plots independent of how they were created.

```python
from plotchecker import ScatterPlotChecker

axis = plt.gca()
pc = ScatterPlotChecker(axis)
pc.assert_x_data_equal(x)
pc.assert_y_data_equal(y)
...
```

Please see the [Examples.ipynb](Examples.ipynb) notebook for futher examples on how `plotchecker` can be used.

Caveats: there are *many* ways that plots can be created in matplotlib. `plotchecker` almost certainly misses some of the edge cases. If you find any, please submit a bug report (or even better, a PR!).

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

plotchecker-0.2.0.tar.gz (75.0 kB view details)

Uploaded Source

Built Distribution

plotchecker-0.2.0-py2.py3-none-any.whl (116.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file plotchecker-0.2.0.tar.gz.

File metadata

  • Download URL: plotchecker-0.2.0.tar.gz
  • Upload date:
  • Size: 75.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for plotchecker-0.2.0.tar.gz
Algorithm Hash digest
SHA256 18bc08ad2900365beb5e54a96d77927feae2e12efc1484b1ea0d0ccc491f971c
MD5 dbd42b7e117e7a49513e68c9cf86947c
BLAKE2b-256 2809f4a15d3ebc6f7b9d514c33279ecc884928b1a4c976583a9e713a955269c7

See more details on using hashes here.

File details

Details for the file plotchecker-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for plotchecker-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 01c5d2a7e549553e463729777c365ff6204742cc86f0bc2a5cbbb276da10744c
MD5 1924e4fc473eb77f9f273af04391f461
BLAKE2b-256 300f99ad6ee7e2ff85c36b1359db9f1718b47f9228a6bebe9ee161f236c6b7af

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