8000 GitHub - MicheleBarsotti/figurout: This repo aims at giving basic functions for handling figure
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MicheleBarsotti/figurout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FigureOut

FigureOut is a Python package for handling figures in a convenient and efficient manner. It provides classes and functions for saving, loading, and displaying Matplotlib figures.

Installation

You can install FigureOut using pip:

pip install figureout

Usage

Saving Figures

import matplotlib.pyplot as plt
from figureout.figure_handler import FigureHandler

# Create a figure
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])

# Save the figure
handler = FigureHandler()
handler.save_fig_pickle(fig, "example_figure")

Loading and Displaying Figures

# Load and display a saved figure
handler.show_fig_pickle("example_figure.mpl")

GUI for Browsing and Opening Figures

# Open GUI for browsing and opening saved figures
handler.open_gui()

Dependencies

  • Python (>=3.8,<3.9)
  • Matplotlib (>=3.0.0)

License

This project is licensed under the MIT License

About

This repo aims at giving basic functions for handling figure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0