Small utility for creating reproducible figures.
Project description
Reproducible Figures
A small Python utility to generate easily reproducible figures for scientific papers. I often find myself generating figures for papers and then having to go through needlessly tedious processes to regenerate them when I want to make a small change, so I made this package. By generating figures using this package a folder is created with the figure, the data used to generate the figure, and the code used to generate the figure. I recommend combining this with a version control system like git to track changes for your figures.
The code is built automatically by finding all the imports needed for create_figure and the functions or classes used in create_figure. This process is not flawless and can potentially miss some imports if they are not accessible through inspection. Additionally, if the code reads from external data sources, these may not be avaiable when reproducing the figure. However, it should work well for most cases!
Installation
pip install reproducible-figures
Example Usage
from reproducible_figures import save_reproducible_figure
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
def create_figure(data):
fig, ax = plt.subplots()
ax.plot(data['x'], data['y'])
return fig
data = pd.DataFrame({
'x': range(10),
'y': np.random.normal(size=10)
})
save_reproducible_figure('test_save_figure', data, create_figure)
This will create the folder figures/test_save_figure with the following structure:
figures/test_save_figure
├── data.csv
├── test_save_figure.pdf
└── code.py
The data.csv file contains the data used to generate the figure, the figure.pdf file contains the figure itself, and the code.py file contains the code used to generate the figure.
In order to reproduce the figure, you can run:
python figures/test_save_figure/code.py
If you want to modify the figure, you can edit the code.py file and run it again.
Advanced Usage
The save_reproducible_figure function should naturally be able to handle most some quite complicated code structure. For example, suppose you have the following figure generating code:
import numpy as np
def external_fn(x):
return np.sqrt(x)
class HelperClass:
def __init__(self, a: int):
self.a = a
def internal_fn(self, x):
return x * self.a
def preprocess_data(self, data: pd.DataFrame) -> pd.DataFrame:
"""Preprocess data."""
data['y'] = self.internal_fn(data['y'])
data['x'] = external_fn(data['x'])
return data
def complex_create_figure(data: pd.DataFrame):
fig, ax = plt.subplots()
helper_class = HelperClass(a=10)
data = helper_class.preprocess_data(data)
ax.plot(data['x'], data['y'])
return fig
Additional Imports
In general, you should not need to manually specify additional imports.
However, in some cases it is unavoidable, so you can pass them to the save_reproducible_figure function:
save_reproducible_figure('test_save_figure',
data,
create_figure,
additional_imports=['import networkx as nx'])
This will add import networkx as nx to the code.py file.
See the tests for an example using networkx to generate a figure.
Additional Functions
In most cases, this should not be needed as the automatic source builder should find all the functions needed. However, if there are any issues or you just want to preserve some code (e.g. code used to generate the data), the functions provided can be added here to be put into the source file.
If you want to use helper functions in your code.py file, you can pass them to the save_reproducible_figure function. For example:
def preprocess_data(data: pd.DataFrame) -> pd.DataFrame:
"""Preprocess data."""
data['y'] = data['y'] * 100
return data
def create_test_figure_with_helper_fns(data: pd.DataFrame):
"""Create a figure."""
fig, ax = plt.subplots()
data = preprocess_data(data)
ax.plot(data['x'], data['y'])
save_reproducible_figure('test_fig_preprocessor', data,
create_test_figure_with_helper_fns,
helper_fns=[preprocess_data])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reproducible_figures-1.1.1.tar.gz.
File metadata
- Download URL: reproducible_figures-1.1.1.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4ed4f55303e05716825b6d1db1d410ad4ee04d83ded00ab265ffb5d5d1559b1
|
|
| MD5 |
cf7e560af031e3116c9c5937183abcb1
|
|
| BLAKE2b-256 |
27eb08c14d37439fdb09287decfa2ff894c425043347a5c7ee40ba9493e196e0
|
File details
Details for the file reproducible_figures-1.1.1-py3-none-any.whl.
File metadata
- Download URL: reproducible_figures-1.1.1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
728986028de097940bb175c2fe59f2fb07e29d9124a7bce31e2ce8a577030592
|
|
| MD5 |
10c48206e753fc37d0e620486f158262
|
|
| BLAKE2b-256 |
11558f2a92aa42d82021f870795ed132107988db26ec0994bee69eaa7c62904d
|