Skip to main content

A Grammar of Graphics for Python

Project description

plotnine

Release License DOI Build Status Documentation 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 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 incrementaly, 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

    (ggplot(mtcars, aes("wt", "mpg"))
     + geom_point())
    
  2. Scatter plot colored according some variable

    (ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
     + geom_point())
    
  3. Scatter plot colored according some variable and smoothed with a linear model with confidence intervals.

    (ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
     + geom_point()
     + stat_smooth(method="lm"))
    
  4. Scatter plot colored according some variable, smoothed with a linear model with confidence intervals and plotted on separate panels.

    (ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
     + geom_point()
     + stat_smooth(method="lm")
     + facet_wrap("~gear"))
    
  5. Adjust the themes

    I) Make it playful

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

    II) Or professional

    (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. everyting

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

Development version

$ pip install git+https://github.com/has2k1/plotnine.git

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. To generate images that are consistent across all systems you have to install matplotlib from source. You can do that with pip using the command.

$ pip install matplotlib --no-binary matplotlib

Otherwise there may be small differences in the text rendering that throw off the image comparisons.

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-0.12.1.tar.gz (5.8 MB view details)

Uploaded Source

Built Distribution

plotnine-0.12.1-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file plotnine-0.12.1.tar.gz.

File metadata

  • Download URL: plotnine-0.12.1.tar.gz
  • Upload date:
  • Size: 5.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for plotnine-0.12.1.tar.gz
Algorithm Hash digest
SHA256 be852c6e50e331ad250151dc4120f269ee9ae5e795f67030f7794718b502592a
MD5 ca81e3be32aa0e1315412dbf07e32b25
BLAKE2b-256 ef212d56a6317aca1f8f6623a9a158c1b0320106cef1ecdb6ccea3f373dc9cb7

See more details on using hashes here.

File details

Details for the file plotnine-0.12.1-py3-none-any.whl.

File metadata

  • Download URL: plotnine-0.12.1-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for plotnine-0.12.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f0989d1f368925082d543efcfc1cfb7236de8341cc6138ae65b856d70f77106a
MD5 ec97330f6b4fa49db9b17a981453242d
BLAKE2b-256 81e994650373de61bcac55baba40f14edb3c71db3af17724542c52a728f5f517

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page