A package which formats matplotlib plots and contains some other useful functions
Project description
tomplotlib
tomplotlib
is Tom's wrapper for matplotlib
.
This package will style your plots and define some useful functions, including a function for automated saving of figures labelled by date and time.
Installation
To install, run
pip install git+https://github.com/TomGeorge1234/tomplotlib.git
Alternatively, clone this directory and then run:
python install .
(install in edit mode pip install -e .
if you wish the edit the code.)
Importing
Import tomplotlib
into your code with: /
import tomplotlib as tpl
set's most of the required style parameters.
Usage
tpl.save_figure(fig)
This, in my opinion, is the most useful function. By defining a figure directory (tpl.figure_directory = "where_to_save_my/Figures/"
), you can calltpl.save_figure(fig, `figureName`)
on anymatplotlib
figure or animation object. This will timestamp the figure and save it in the figure directory (which will be made if it doesn't already exist), inside another directory which is the todays days date. By default images will be saved as.png
s and.svg
s, If an animation object if passed this will be saved as'.gif'
and'.mp4'
.
import tomplotlib as tpl
tpl.figure_directory = "./Figures/"
fig, ax = #some code which makes a maplotlib figure
tpl.save_figure(fig,"fig_name")
-
tpl.xy_axes(ax)
Tidies the axes, leaving only x and y axes at zero. -
tpl.set_colorscheme(colorscheme)
sets the colour scheme
tpl.set_colorscheme(colorscheme=1)
fig, ax = #some code which makes a matplotlib figure
tpl.set_colorscheme(colorscheme=2)
fig, ax = #some code which makes a matplotlib figure
tpl.set_colorscheme(colorscheme='Set3')
fig, ax = #some code which makes a matplotlib figure
tpl.set_colorscheme(colorscheme=[[0.9,0.9,0.9],[0.75,0.75,0.75],[0.6,0.6,0.6],[0.45,0.45,0.45],[0.3,0.3,0.3],[0.15,0.15,0.15],[0,0,0]])
fig, ax = #some code which makes a matplotlib figure
You pass colorscheme
as an int
(schemes I have defined), as str
(matplotlib schemes, see here) or as a list
of colors (e.g. list of hexstrings). These will become C0, C1, C2...
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file tomplotlib-1.0-py3-none-any.whl
.
File metadata
- Download URL: tomplotlib-1.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4bf0a50379c3d9e3aa136a69a665f92e15dacfb71130c2ce6e0e29b7edab64f |
|
MD5 | cc29e69f91d9ba5a2e65b37bf83c68a9 |
|
BLAKE2b-256 | 2068ca0ea4365040b8b9da8e2c84d298c2672ea7ab972d50665a7f6e82006b5d |