A collection of stylesheets and default values for Python matplotlib figures.
Project description
PltStyler
A simple package to provide a collection of stylesheets and default values for Python matplotlib figures. The goal is to make it easy to create visually appealing and consistent plots with minimal effort.
I will add more stylesheets and default values in the future! If you have any suggestions or want to contribute, feel free to open an issue or a pull request.
Installation
You can install PltStyler using pip:
pip install PltStyler
Usage
To use PltStyler, simply import the desired stylesheet and apply it to your matplotlib figures. For example:
import matplotlib.pyplot as plt
from PltStyler import PltStyler
# Apply the default stylesheet
PltStyler().apply_stylesheet()
# Apply a predefined stylesheet (e.g., "dark")
PltStyler().set_stylesheet("dark").apply_stylesheet()
# Apply a custom stylesheet - must be json (see below for an example)
PltStyler().set_stylesheet("path/to/stylesheet.json").apply_stylesheet()
# Change the font
PltStyler().set_font(family="Arial", weight="normal").apply_font()
# The PltStyler inclused default parameters for the following plot types:
# - Line plots
# - Scatter plots
# - Box plots
# - Histograms
lineplot_defaults = PltStyler().get_lineplot_defaults()
# Create a sample plot
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y, **lineplot_defaults) # apply lineplot defaults
plt.title("Sample Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.show()
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
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 pltstyler-0.0.4.tar.gz.
File metadata
- Download URL: pltstyler-0.0.4.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3f431734bf99c2358f172260f0277ad7447dee9a4baf7a15a744e371c836cdd
|
|
| MD5 |
7fbe641f7bf6c8627be51804a29a1c24
|
|
| BLAKE2b-256 |
582b3e49b3bfc57be880d69c88bfee577a230e773a76fce5f737a6e460c8027f
|
File details
Details for the file pltstyler-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pltstyler-0.0.4-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.9 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e959242ef96a87c46e68b5fdedd81d3b01f2c7c429b49facd36429540a0ee69d
|
|
| MD5 |
3dd9f0f4636d6f74e68e397c6ea9e882
|
|
| BLAKE2b-256 |
15654b582113d0eaa90c990eb1af5ca93caa648b033eb91ca933c2be6e839d93
|