Coder Social home page Coder Social logo

corner.py's Introduction

corner.py

Make some beautiful corner plots.

Corner plot /ˈkôrnər plät/ (noun):
An illustrative representation of different projections of samples in high dimensional spaces. It is awesome. I promise.

Built by Dan Foreman-Mackey and collaborators (see corner.__contributors__ for the most up to date list). Licensed under the 2-clause BSD license (see LICENSE).

Installation

Just run

pip install corner

to get the most recent stable version.

Usage

The main entry point is the corner.corner function. You'll just use it like this:

import numpy as np
import corner

ndim, nsamples = 5, 10000
samples = np.random.randn(ndim * nsamples).reshape([nsamples, ndim])
figure = corner.corner(samples)
figure.savefig("corner.png")

With some other tweaks (see demo.py) you can get something that looks awesome like:

https://raw.github.com/dfm/corner.py/master/corner.png

By default, data points are shown as grayscale points with contours. Contours are shown at 0.5, 1, 1.5, and 2 sigma.

For more usage examples, take a look at tests.py.

Documentation

All the options are documented in the docstrings for the corner and hist2d functions. These can be viewed in a Python shell using:

import corner
print(corner.corner.__doc__)

or, in IPython using:

import corner
corner.corner?

A note about "sigmas"

We are regularly asked about the "sigma" levels in the 2D histograms. These are not the 68%, etc. values that we're used to for 1D distributions. In two dimensions, a Gaussian density is given by:

pdf(r) = exp(-(r/s)^2/2) / (2*pi*s^2)

The integral under this density is:

cdf(x) = Integral(r * exp(-(r/s)^2/2) / s^2, {r, 0, x})
       = 1 - exp(-(x/s)^2/2)

This means that within "1-sigma", the Gaussian contains 1-exp(-0.5) ~ 0.393 or 39.3% of the volume. Therefore the relevant 1-sigma levels for a 2D histogram of samples is 39% not 68%. If you must use 68% of the mass, use the levels keyword argument.

The "sigma-demo" notebook visually demonstrates the difference between these choices of levels.

Attribution

If you make use of this code, please cite it.

License

Copyright 2013, 2014 Dan Foreman-Mackey

corner.py is free software made available under the BSD License. For details see the LICENSE file.

corner.py's People

Contributors

dfm avatar adrn avatar willvousden avatar geoffryan avatar mattpitkin avatar zblz avatar gregoryashton avatar mikesmith1611 avatar emilylurice avatar kelle avatar wkerzendorf avatar tacaswell avatar shoyer avatar kbarbary avatar iancze avatar hannorein avatar egentry avatar davidwhogg avatar eggplantbren avatar

Watchers

James Cloos avatar Tong Zhang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.