Skip to main content

A pythonic wrapper around R's ggplot

Project description

pyggplot is a Pythonic wrapper around the R ggplot2 library.

Unlike the Python ggplot this is not a reimplementation based on Matplotlib, but a straightforward take `Pandas <http://pandas.pydata.org/>`__ data frames and shove them into `R <http://www.r-project.org/>`__ via `rpy2 <https://pypi.python.org/pypi/rpy2>`__ approach.

Installation

The easiest installation is via PyPI.

$ pip install pyggplot

You may be required to update pandas, rpy2, so you may be required to run

$ pip install --upgrade pyggplot

Usage

import pandas as pd
import numpy as np
import ggplot

df = pd.DataFrame({'x': np.random.rand(100),
                   'y': np.random.randn(100),
                   'group': ['A','B'] * 50})

p = pyggplot.Plot(df)
p.add_scatter('x','y', color='group')
p.render('output.png')
## or if you want to use it in IPython Notebook
# p.render_notebook()

Examples

Please visit (http://tyberiusprime.github.io/pyggplot/pyggplot%20samples.html our examples).

Further usage

Takes a pandas.DataFrame object, then add layers with the various add_xyz functions (e.g. add_scatter).

Refer to the ggplot documentation about the layers (geoms), and simply replace geom_* with add_*. See: http://docs.ggplot2.org/0.9.3.1/index.html

You do not need to separate aesthetics from values - the wrapper will treat a parameter as value if and only if it is not a column name. (so y = 0 is a value, color = 'blue' is a value - except if you have a column 'blue', then it is a column!. And y = 'value' does not work, but that seems to be a ggplot issue).

When the DataFrame is passed to R:

  • row indices are turned into columns with ‘reset_index’,

  • multi level column indices are flattened by concatenating them with ' ', that is (X, 'mean') becomes 'x mean'.

Error messages are not great - most of them translate to ‘one or more columns were not found’, but they can appear as a lot of different actual messages such as

  • argument “env” is missing, with no default

  • object ‘y’ not found

  • object ‘dat_0’ not found

  • requires the following missing aesthetics: x

  • non numeric argument to binary operator

without actually quite pointing at what is strictly the offending value. Also, the error appears when rendering (or printing in the IPython Notebook), not when adding the layer.

Open questions

  • the stat support is not great - it doesn’t easily map into pythonic objects. For now, do your stats in pandas - more powerful anyhow!

  • how could error messages be improved?

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

pyggplot-17.tar.gz (20.7 kB view details)

Uploaded Source

File details

Details for the file pyggplot-17.tar.gz.

File metadata

  • Download URL: pyggplot-17.tar.gz
  • Upload date:
  • Size: 20.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyggplot-17.tar.gz
Algorithm Hash digest
SHA256 d7ea22046c8b401e632c96aa572a435b4a47665d129b03d5be4805114273e1a4
MD5 56d4d29efb4979d5686dfd5e6657666a
BLAKE2b-256 fca41d47b9e82edf33c13f5a8413f3ebffd30b347f99b9e2e94718d523a056b3

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page