No project description provided
Project description
Taste: Creating plots fast
Taste is a Python package wrapping Matplotlib APIs into a set of common most used plots across multiple various applications or reporting tools via clean and intuitive classes adhering to The Zen of Python.
It tries to completely isolate itself from the global Matplotlib context which can be hard to understand for a complete newbie and can cause too much unnecessary struggle.
It is easy and intuitive to use:
from taste.plots import HorizontalBarPlot
# create a plot with desired properties
plot = HorizontalBarPlot(
caption="Plot caption",
title="Figure title",
bars=[0, 1, 2, 3, 4],
values=[9, 9, 5, 8, 2],
bar_label="Here I can label the bars",
value_label="And here I label the values",
bar_axis_labels=["Tom", "Dick", "Harry", "Slim", "Jim"],
value_axis_labels=["L0", "L1", "L2", "L3", "L4"]
)
# explicitly ask to draw the plot in Jupyter notebook
plot.figure # MPL figure object
[!NOTE] Although it doesn't explicitly forbid Python 3.6 due to compatibility with some older Jupyter notebooks, it aspires to run on higher versions (3.7+). Updating is highly recommended.
Quick Installation
Taste is available on PyPI, simply issue this command in your terminal and you're good to go:
pip install taste
For more descriptive steps in various environments check Installation.
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
File details
Details for the file taste-0.3.1.tar.gz.
File metadata
- Download URL: taste-0.3.1.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ebefff028c4dd0a3153b0e42c3ae0660768aee652a3258cd83cfa2574514ed9
|
|
| MD5 |
e5626a76f1f18ff65b30999fcfbe8b82
|
|
| BLAKE2b-256 |
1b49a60820cf488fba6528442f97422892b0903c2962883bc17d4def320bbd7d
|