Make some beautiful corner plots of samples.
Project description
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 triangle.__contributors__ for the most up to date list). Licensed under the 2-clause BSD license (see LICENSE).
Installation
Just run
pip install triangle_plot
to get the most recent stable version.
Usage
The main entry point is the triangle.corner function. You’ll just use it like this:
import numpy as np import triangle ndim, nsamples = 5, 10000 samples = np.random.randn(ndim * nsamples).reshape([nsamples, ndim]) figure = triangle.corner(samples) figure.savefig("triangle.png")
With some other tweaks (see demo.py) you can get something that looks awesome like:
By default, data points are shown as grayscale points with contours. Contours are shown at 0.5, 1, 1.5, and 2 sigma.
Attribution
If you make use of this code, please cite it.
License
Copyright 2013, 2014 Dan Foreman-Mackey
triangle.py is free software made available under the BSD License. For details see the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file corner-0.2.0.tar.gz
.
File metadata
- Download URL: corner-0.2.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7b5b4dc7ac1cecb6cdec46c3420a35f27a3b184206d890bdead07eaba9b2ade |
|
MD5 | 4d8a730a2ba29fe0c3e446030f498fd6 |
|
BLAKE2b-256 | a588e46f61ca70121149611ab2bc5628556d194d06fc13ddcee117a012b2dd90 |