Replies: 1 comment 2 replies
-
@pscicluna, this looks like a question about |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HI! I'm trying to understand how I can make the
coords
keyword of many arviz plotting routines to behave in a certain way. I hope explain the problem well enough, I'll gladly try to clarify if not.To outline my problem, I'm inferring the contents of a correlation matrix with PyMC3. Now, because the matrix is symmetrical, I only want to use the upper (or lower, if it makes a difference) off-diagonal elements, that is to use elements
[0,1]
,[1,2]
,[0,2]
if it's a 3-dimensional problem.However, plot_pair seems to interpret
coords
as a "slice" along a dimension, such that if I setcoords
to [0,1] on dimension one of the correlation matrix and [1,2] on dimension two, I will also get the plots for [1,1]. Is there any way that I can leave this one out automatically, or do I have to manually iterate over a set of axes to get this?Beta Was this translation helpful? Give feedback.
All reactions