Prism themes for plotnine, inspired by ggprism
Project description
plotnine-prism
Prism themes for plotnine, inspired by ggprism.
Installation
pip install -U plotnine-prism
Documentation
https://pwwang.github.io/plotnine-prism
Usage
See this notebook for the following example, and also Getting started for a quick overview of plotnine_prism
features.
from plotnine import *
from plotnine_prism import *
from datar.all import f, as_categorical, mutate
from datar.datasets import ToothGrowth
ToothGrowth >>= mutate(dose=as_categorical(f.dose))
base = (
ggplot(ToothGrowth, aes(x = "dose", y = "len")) +
geom_violin(aes(colour = "dose", fill = "dose"), trim = False) +
geom_boxplot(aes(fill = "dose"), width = 0.2, colour = "black")
)
p1 = base + ylim(-5, 40)
p2 = (
base +
scale_y_continuous(limits=[-5, 40], guide=guide_prism_offset_minor()) +
scale_color_prism('floral') +
scale_fill_prism('floral') +
theme_prism()
)
# See examples/nb_helpers.py for plot_grid function
# plot_grid(p1, p2)
More examples
The Dose Response Curve was recreated. See this vignette for the source code and step-by-step instructions.
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
plotnine_prism-0.3.0.tar.gz
(26.8 kB
view details)
Built Distribution
File details
Details for the file plotnine_prism-0.3.0.tar.gz
.
File metadata
- Download URL: plotnine_prism-0.3.0.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2bafacc232ed41494d76b690611243afedb81ae24c0b06e9a20a61187a3e860 |
|
MD5 | d29afbd476d588cd8487169a4577566d |
|
BLAKE2b-256 | 047424aa483ea86581e9bb34e1a294f24a0e109839e22eac33f07ad361c9c260 |
File details
Details for the file plotnine_prism-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: plotnine_prism-0.3.0-py3-none-any.whl
- Upload date:
- Size: 42.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1040-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7a6e1e0acce7a98377b0707b862be6330e962234f9df37bab8cb926934ccc1f |
|
MD5 | 041b410baa25d245ffc7da484a464993 |
|
BLAKE2b-256 | 24dc1c6e669eaa866389b58f969eeb58301c1ca6545252b7302ebea24d11c329 |