corner.py
corner.py copied to clipboard
plot full square
I should be able to set duplicate=True
and have it plot both the upper triangle and the lower triangle in a full square with every 2-d plot duplicated.
Oh now I can see that the full enhancement I want is keywords lower
, upper
, and diagonal
with default values True
, False
, and True
. This would permit combination of issue #74 with this issue.
If we are going to go for both upper and lower plots included, we could
then add the option conditional=True
- this would enabled plots that
showed both ${\rm Pr}(a|b)$ and ${\rm Pr}(b|a)$ if lower=True,upper=True
.
If there is appetite for this it's a separate issue though.
On Sun, Jan 17, 2016 at 10:30 AM, David W. Hogg [email protected] wrote:
Oh now I can see that the full enhancement I want is keywords lower, upper, and diagonal with default values True, False, and True. This would permit combination of issue #74 https://github.com/dfm/corner.py/issues/74 with this issue.
— Reply to this email directly or view it on GitHub https://github.com/dfm/corner.py/issues/75#issuecomment-172362133.
conditional was going to be my next feature request! But it is a separate issue, indeed