corner.py
corner.py copied to clipboard
Make some beautiful corner plots
Automatically updating the Copier template **Maintainers should close and then re-open this PR to get the tests to run.**
Hi, I have been using the corner.corner method. I always set the show_title argument to True and I wanted to get the 95% confidence interval instead of the default 68%....
updates: - [github.com/kynan/nbstripout: 0.5.0 → 0.6.0](https://github.com/kynan/nbstripout/compare/0.5.0...0.6.0)
I would like fine-grained control over the binning scheme, but at the moment I think I can only provide the number of bins using the `bins` argument, e.g. `bins=20`. Is...
I noticed xlim was not set for the diagonal 1D histogram so I added ``` ax.set_xlim(np.sort(range[i])) ``` to `core.py`
Solves #85 Log-scaled axes can be used via the `axes_scale` argument as indicated below: ```python import numpy as np import matplotlib.pyplot as plt import corner cov = np.array([[ 0.1, 0.04,...
Hi there, I'm relatively new to python and am giving your corner script a go! But I can seem to work out how to get the axes of the plots...
I'm using the corner package, version 2.0.1 to produce some corner plots after importing matrices stored in text files. My laptop has 16 GB RAM + 16 GB SWAP. The...
I just want the confidence level plot, and hence I am trying to remove the 1D histograms using `corner.corner()`. Unfortunately I could not do it yet. Can it be done...
Brilliant code etc., for which thanks. I'd like to use corner for plotting (arbitrary) data that are already on a regular n-dimensional grid. Is this supported? Or do I have...