MCPcopy Index your code
hub / github.com/has2k1/plotnine

github.com/has2k1/plotnine @v0.16.0a11 sqlite

repository ↗ · DeepWiki ↗ · release v0.16.0a11 ↗
2,797 symbols 12,925 edges 297 files 1,408 documented · 50%
README

plotnine

Release License DOI Build Status Coverage

plotnine is an implementation of a grammar of graphics in Python based on ggplot2. The grammar allows you to compose plots by explicitly mapping variables in a dataframe to the visual characteristics (position, color, size etc.) of objects that make up the plot.

Plotting with a grammar of graphics is powerful. Custom (and otherwise complex) plots are easy to think about and build incrementally, while the simple plots remain simple to create.

To learn more about how to use plotnine, check out the documentation. Since plotnine has an API similar to ggplot2, where it lacks in coverage the ggplot2 documentation may be helpful.

Example

from plotnine import *
from plotnine.data import mtcars

Building a complex plot piece by piece.

  1. Scatter plot

python ( ggplot(mtcars, aes("wt", "mpg")) + geom_point() )

  1. Scatter plot colored according some variable

python ( ggplot(mtcars, aes("wt", "mpg", color="factor(gear)")) + geom_point() )

  1. Scatter plot colored according some variable and smoothed with a linear model with confidence intervals.

python ( ggplot(mtcars, aes("wt", "mpg", color="factor(gear)")) + geom_point() + stat_smooth(method="lm") )

  1. Scatter plot colored according some variable, smoothed with a linear model with confidence intervals and plotted on separate panels.

python ( ggplot(mtcars, aes("wt", "mpg", color="factor(gear)")) + geom_point() + stat_smooth(method="lm") + facet_wrap("gear") )

  1. Adjust the themes

I) Make it playful

python ( ggplot(mtcars, aes("wt", "mpg", color="factor(gear)")) + geom_point() + stat_smooth(method="lm") + facet_wrap("gear") + theme_xkcd() )

II) Or professional

python ( ggplot(mtcars, aes("wt", "mpg", color="factor(gear)")) + geom_point() + stat_smooth(method="lm") + facet_wrap("gear") + theme_tufte() )

Installation

Official release

# Using pip
$ pip install plotnine             # 1. should be sufficient for most
$ pip install 'plotnine[extra]'    # 2. includes extra/optional packages
$ pip install 'plotnine[test]'     # 3. testing
$ pip install 'plotnine[doc]'      # 4. generating docs
$ pip install 'plotnine[dev]'      # 5. development (making releases)
$ pip install 'plotnine[all]'      # 6. everything

# Or using conda
$ conda install -c conda-forge plotnine

# Or using pixi
$ pixi init name-of-my-project
$ cd name-of-my-project
$ pixi add python plotnine

Development version

$ pip install git+https://github.com/has2k1/plotnine.git
$ brew install oxipng   # Test image optimiser (OR `cargo install oxipng`)

Contributing

Our documentation could use some examples, but we are looking for something a little bit special. We have two criteria:

  1. Simple looking plots that otherwise require a trick or two.
  2. Plots that are part of a data analytic narrative. That is, they provide some form of clarity showing off the geom, stat, ... at their differential best.

If you come up with something that meets those criteria, we would love to see it. See plotnine-examples.

If you discover a bug checkout the issues if it has not been reported, yet please file an issue.

And if you can fix a bug, your contribution is welcome.

Testing

Plotnine has tests that generate images which are compared to baseline images known to be correct. There may be small differences in the text rendering that throw off the image comparisons, and the tests allow some very small differences.

Core symbols most depended-on inside this repo

append
called by 114
plotnine/scales/scales.py
getp
called by 106
plotnine/themes/theme.py
set
called by 88
plotnine/themes/seaborn_rcmod.py
get
called by 65
plotnine/mapping/_env.py
add_artist
called by 46
plotnine/_mpl/figure.py
items
called by 46
plotnine/themes/themeable.py
after_stat
called by 35
plotnine/mapping/evaluation.py
update
called by 35
plotnine/themes/themeable.py

Shape

Method 1,401
Function 860
Class 535
Route 1

Languages

Python100%

Modules by API surface

plotnine/themes/themeable.py242 symbols
plotnine/_mpl/layout_manager/_plot_side_space.py82 symbols
plotnine/scales/scale_color.py59 symbols
tests/test_scale_internals.py57 symbols
plotnine/_mpl/layout_manager/_composition_side_space.py55 symbols
plotnine/_utils/__init__.py54 symbols
tests/test_layout.py48 symbols
plotnine/_mpl/layout_manager/_layout_tree.py47 symbols
tests/test_inset_element.py42 symbols
plotnine/layer.py42 symbols
plotnine/composition/_compose.py39 symbols
plotnine/_mpl/utils.py39 symbols

Dependencies from manifests, versioned

matplotlib3.11.0 · 1×
mizani0.14.0 · 1×
numpy1.25.0 · 1×
pandas2.2.0 · 1×
scipy1.15.0 · 1×

For agents

$ claude mcp add plotnine \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact